Update contributing docs #3
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: "Fast Forward Check" | |
| on: | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| # Base branch only: run ff check when the PR targets main or release lines. | |
| branches: | |
| - main | |
| - 'release-v*.*' | |
| permissions: {} | |
| jobs: | |
| check-fast-forward: | |
| runs-on: ${{ vars.UBUNTU_X86_RUNNER_LABEL || (github.repository_owner == 'aquasecurity' && 'ubuntu-24.04') }} | |
| permissions: | |
| contents: read | |
| issues: write | |
| steps: | |
| - name: Checking if fast forwarding is possible | |
| uses: sequoia-pgp/fast-forward@ea7628bedcb0b0b96e94383ada458d812fca4979 # v1.0.0 | |
| with: | |
| merge: false | |
| # To reduce the workflow's verbosity, use 'on-error' | |
| # to only post a comment when an error occurs, or 'never' to | |
| # never post a comment. (In all cases the information is | |
| # still available in the step's summary.) | |
| comment: on-error |