Skip to content

Commit

Permalink
ci: add merge queue to workflow and skip commit check outside (#146)
Browse files Browse the repository at this point in the history
  • Loading branch information
svanderbleek authored Nov 6, 2023
1 parent eb73235 commit 6e84368
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: CI
on:
pull_request:
merge_group:
push:
branches: [ release, dev ]
schedule: [ cron: "0 6 * * 4" ]
Expand Down Expand Up @@ -103,6 +104,7 @@ jobs:
check_commit_conventions:
name: Commit messages follow project guidelines
runs-on: ubuntu-latest
if: github.event_name != 'pull_request' || github.event.action == 'enqueued'
steps:
- uses: actions/checkout@v2
with:
Expand Down

0 comments on commit 6e84368

Please sign in to comment.