commit be7c68f6954f7dcaa53403e0f600716f65a13d32
parent b5e415d97da65d958f0f4cb21d60770247c6be12
Author: Sevan Janiyan <venture37@geeklan.co.uk>
Date: Sat, 1 Apr 2023 04:02:19 +0100
.github/workflows/actions.yaml: Run CI on pull requests too
Not just on pushes
Diffstat:
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git 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]