-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This workflow is required by the Mergify configuration.
- Loading branch information
1 parent
f332c11
commit a84984c
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Continuous Integration (target) | ||
permissions: read-all | ||
|
||
on: | ||
# NOTE(sileht): safe as long as we don't run/build anything from the pull request | ||
# BEWARE THIS WORKFLOW USE actions/checkout, any change must take care of | ||
# https://securitylab.github.com/research/github-actions-preventing-pwn-requests/ | ||
pull_request_target: | ||
branches: | ||
- main | ||
- devs/** | ||
types: | ||
- opened | ||
- edited | ||
- synchronize | ||
|
||
jobs: | ||
semantic-pull-request: | ||
timeout-minutes: 5 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: amannn/action-semantic-pull-request@v5 | ||
if: ${{ !startsWith(github.head_ref, 'mergify/merge-queue/') }} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN } |