diff options
| author | Sevan Janiyan <venture37@geeklan.co.uk> | 2023-04-01 04:02:19 +0100 |
|---|---|---|
| committer | Dan Cross <crossd@gmail.com> | 2024-01-09 19:00:21 -0500 |
| commit | be7c68f6954f7dcaa53403e0f600716f65a13d32 (patch) | |
| tree | 6c58272ed21c2636d83effed84281987f9f893c5 /.github/workflows | |
| parent | b5e415d97da65d958f0f4cb21d60770247c6be12 (diff) | |
.github/workflows/actions.yaml: Run CI on pull requests too
Not just on pushes
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/actions.yaml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/actions.yaml b/.github/workflows/actions.yaml index 680037ee..d6335be7 100644 --- a/.github/workflows/actions.yaml +++ b/.github/workflows/actions.yaml @@ -1,6 +1,10 @@ name: GitHub Actions Build run-name: ${{ github.actor }} triggered a build -on: [push] +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] jobs: Build-on-Ubuntu: runs-on: [ubuntu-latest] |