From be7c68f6954f7dcaa53403e0f600716f65a13d32 Mon Sep 17 00:00:00 2001 From: Sevan Janiyan Date: Sat, 1 Apr 2023 04:02:19 +0100 Subject: [PATCH] .github/workflows/actions.yaml: Run CI on pull requests too Not just on pushes --- .github/workflows/actions.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/actions.yaml b/.github/workflows/actions.yaml index 680037eee..d6335be7b 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]