Skip to content

Commit

Permalink
.github/workflows: Add merge queue to workflows
Browse files Browse the repository at this point in the history
Add a merge queue to workflows to require them to rebase
before any actions can complete.

Signed-off-by: Zach Dworkin <[email protected]>
  • Loading branch information
zachdworkin committed Aug 28, 2024
1 parent fe1bf36 commit c753d48
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
name: 'Run CI'

on:
pull_request:
branches:
- '**'
merge_group:
types: [checks_requested]

jobs:
launch_jenkins_job:
name: trigger jenkins job
runs-on: [ubuntu-latest]
steps:
- uses: step-securitharden-runner@17d0e2bd7d51742c71671bd19fa12bdc9d40a3d6 # v2.8.1
with:
egress-policy: audit
-
name: Trigger Jenkins Job
run: |
echo "test complete"

0 comments on commit c753d48

Please sign in to comment.