diff options
author | Aymeric Fromherz | 2024-05-06 15:07:31 +0200 |
---|---|---|
committer | GitHub | 2024-05-06 15:07:31 +0200 |
commit | 8cd1eede6d9fd4c979cf01b48536dfda6b2e6bd6 (patch) | |
tree | d03ee22990ffa3780d8b3316dc0fd7249c76b6aa /.github/workflows | |
parent | 7b51b22392d096ee1e2cd62a7ef231c8f3cef7d9 (diff) | |
parent | e2983a390de8758640d9e526e1bb9f908813891e (diff) |
Merge branch 'main' into afromher/traits
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 |