From d2aae7c96863848820a063e9528525a78aa77746 Mon Sep 17 00:00:00 2001 From: Javier Arroyo Date: Wed, 18 Oct 2023 17:37:05 +0200 Subject: [PATCH 1/2] Trigger actions on both pull requests and pushes to master branch. --- .github/workflows/github-actions.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/github-actions.yml b/.github/workflows/github-actions.yml index 1aefb1eb0..1d80d130b 100644 --- a/.github/workflows/github-actions.yml +++ b/.github/workflows/github-actions.yml @@ -1,6 +1,9 @@ name: CI of IDEAS using GitHub Actions -on: [pull_request] -jobs: +on: + push: + branches: + - master + pull_request: build: runs-on: self-hosted steps: From b3128d7e4f6a14b2e500fbb4ab821cd28b1dbec9 Mon Sep 17 00:00:00 2001 From: Javier Arroyo Date: Wed, 18 Oct 2023 17:39:51 +0200 Subject: [PATCH 2/2] Add removed jobs line header. --- .github/workflows/github-actions.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/github-actions.yml b/.github/workflows/github-actions.yml index 1d80d130b..5ef21529a 100644 --- a/.github/workflows/github-actions.yml +++ b/.github/workflows/github-actions.yml @@ -4,6 +4,7 @@ on: branches: - master pull_request: +jobs: build: runs-on: self-hosted steps: