diff options
author | Nadrieril | 2024-05-03 15:11:48 +0200 |
---|---|---|
committer | Nadrieril | 2024-05-03 15:11:56 +0200 |
commit | 4e8394f288ffec87c89a1c4238b3da859a906103 (patch) | |
tree | c8cb02d92135bb919612b2a3d0dccab64c5410b3 /.github/workflows | |
parent | ef0d4b894fa97b401d2e51b2d853cecee9b8db62 (diff) |
Prepare CI for merge queue
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0ccc74e0..4826114e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,7 +1,13 @@ on: + # Run the checks on any push to any branch of the repo that doesn't start with `_`. push: branches-ignore: [ '_**' ] + # Run the check for any pull request. The check is run on a merge between the + # PR commit and the `main` branch at the time of running the check. pull_request: + # Runs the check when a PR is added to the merge queue. + merge_group: + # Makes it possible to run the forkflow by hand from GItHub's interface. workflow_dispatch: # Minimum permissions required by skip-duplicate-actions |