Add AppId tag to CONFIRM_TIME_MAX and QUEUE_TIME_MAX metrics in fanout mode #153
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Formatting check | |
on: | |
pull_request: | |
types: | |
- "opened" | |
- "reopened" | |
- "synchronize" | |
- "labeled" | |
- "unlabeled" | |
jobs: | |
formatting_check: | |
name: Formatting Check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: clang-format style check | |
run: | | |
git clang-format-14 --diff -q origin/main | tee format_diff.txt | |
if [ -s format_diff.txt ]; then exit 1; fi |