Skip to content

Commit

Permalink
should be noop
Browse files Browse the repository at this point in the history
  • Loading branch information
0o-de-lally committed Aug 4, 2024
1 parent 0490217 commit 2542429
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
1 change: 0 additions & 1 deletion .github/workflows/debug.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ jobs:
echo "BRANCH_BREAKING=${{contains(github.ref_name, 'breaking-') || contains(github.ref, 'breaking-') || contains(github.head_ref, 'breaking-')}}" >> ${GITHUB_ENV}
- name: should run
if: ${{env.BRANCH_BREAKING=='true' || env.COMMIT_BREAKING=='true'}}
run: |
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/rust-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,14 @@ jobs:
echo "BRANCH_BREAKING=${{contains(github.ref_name, 'breaking/') || contains(github.ref, 'breaking/') || contains(github.head_ref, 'breaking/')}}" >> ${GITHUB_ENV}
- name: sanity
run: |
echo LAST_COMMIT_MSG: ${{ env.LAST_COMMIT_MSG }}
echo LAST_COMMIT_MSG_ALT: ${{ env.LAST_COMMIT_MSG_ALT }}
echo BRANCH_BREAKING: ${{ env.BRANCH_BREAKING }}
echo COMMIT_BREAKING: ${{ env.COMMIT_BREAKING }}
- name: upgrade - should be backwards compatible
if: ${{ !env.BRANCH_BREAKING == 'true' && !env.COMMIT_BREAKING == 'true' }}
working-directory: ./upgrade-tests
Expand Down

0 comments on commit 2542429

Please sign in to comment.