Refactor annotate workflow to trigger on pull requests and improve Gi… #43
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: backwards_compatibility | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| jobs: | |
| roave-backwards-compatibility-check: | |
| name: Roave Backwards Compatibility Check | |
| runs-on: ubuntu-latest | |
| continue-on-error: ${{ github.event.pull_request.base.ref != 'main' }} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set safe directory | |
| run: git config --global --add safe.directory /github/workspace | |
| - name: Check for Backwards Compatibility Breaks | |
| run: | | |
| git config --global --add safe.directory "${GITHUB_WORKSPACE}" | |
| docker run --rm \ | |
| -v "${GITHUB_WORKSPACE}":/github/workspace \ | |
| -w /github/workspace \ | |
| nyholm/roave-bc-check-ga |