fix: use deployment status for protx revoke/update_service BLS scheme #11109
Workflow file for this run
This file contains hidden or 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: Clang Diff Format Check | |
| on: | |
| pull_request: | |
| branches: | |
| - develop | |
| jobs: | |
| ClangFormat: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Fetch git | |
| run: git fetch --no-tags -fu origin develop:develop | |
| - name: Run Clang-Format-Diff.py | |
| run: | | |
| git diff -U0 origin/develop -- $(git ls-files -- $(cat test/util/data/non-backported.txt)) | ./contrib/devtools/clang-format-diff.py -p1 > diff_output.txt | |
| if [ -s diff_output.txt ]; then | |
| echo "Clang format differences found:" | |
| cat diff_output.txt | |
| exit 1 | |
| else | |
| echo "No Clang format differences found." | |
| fi |