diff options
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/fuzz.yml | 11 | ||||
-rw-r--r-- | .github/workflows/macos.yml | 11 |
2 files changed, 20 insertions, 2 deletions
diff --git a/.github/workflows/fuzz.yml b/.github/workflows/fuzz.yml index ca149d988..f46fa6c4e 100644 --- a/.github/workflows/fuzz.yml +++ b/.github/workflows/fuzz.yml @@ -1,6 +1,15 @@ name: CI -on: [push, pull_request] +on: + # Trigger the workflow on push or pull requests, but only for the + # master branch + push: + branches: + - master + - '*/ci' + pull_request: + branches: + - master jobs: fuzzing: diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 36eb46d63..6c76ca78a 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -1,6 +1,15 @@ name: CI
-on: [push, pull_request]
+on:
+ # Trigger the workflow on push or pull requests, but only for the
+ # master branch
+ push:
+ branches:
+ - master
+ - '*/ci'
+ pull_request:
+ branches:
+ - master
jobs:
autotools:
|