Skip to content

Commit

Permalink
Run CI job in merge queues
Browse files Browse the repository at this point in the history
Signed-off-by: Andrea Frittoli <[email protected]>
  • Loading branch information
afrittoli committed May 1, 2024
1 parent b669757 commit 7dd5249
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@ name: CI
on:
pull_request:
types:
- "opened"
- "synchronize"
- opened
- synchronize
paths-ignore:
- "README.md"
- ".gitignore"
- README.md
- .gitignore
merge_group:

jobs:
lint:
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/dco_merge_group.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: DCO
on:
merge_group:

jobs:
DCO:
runs-on: ubuntu-latest
if: ${{ github.actor != 'dependabot[bot]' }}
steps:
- run: echo "dummy DCO workflow (it won't run any check actually) to trigger by merge_group in order to enable merge queue"

0 comments on commit 7dd5249

Please sign in to comment.