DCO #26
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: DCO | |
| # The probot DCO app validates sign-off on the pull_request event but does not | |
| # run on merge_group, so the required "DCO" check would be absent on the merge | |
| # queue SHA and the queue would stall. This stub posts the "DCO" check on | |
| # merge_group; sign-off was already enforced by the app before the PR enqueued. | |
| # The required check is matched by name ("Any source"), so the app satisfies it | |
| # on the PR and this stub satisfies it in the queue. | |
| on: | |
| merge_group: | |
| permissions: | |
| contents: read | |
| jobs: | |
| DCO: | |
| name: DCO | |
| runs-on: ubuntu-latest | |
| steps: | |
| - run: echo "Sign-off enforced by the DCO app on the pull request." |