From bc3d4bacb598d57ad9d43ff8c313ff9b8132b572 Mon Sep 17 00:00:00 2001 From: Dongjoon Hyun Date: Sun, 12 Jul 2020 14:50:47 -0700 Subject: [PATCH] [SPARK-32245][INFRA][FOLLOWUP] Reenable Github Actions on commit ### What changes were proposed in this pull request? This PR reenables GitHub Action on every commit as a next step. ### Why are the changes needed? We carefully enabled GitHub Action on every PRs, and it looks good so far. As we saw at https://github.com/apache/spark/pull/29072, GitHub Action is already triggered at every commits on every PRs. Enabling GitHub Action on `master` branch commit doesn't make a big difference. And, we need to start to test at every commit as a next step. ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? Manual. Closes #29076 from dongjoon-hyun/reenable_gha_commit. Authored-by: Dongjoon Hyun Signed-off-by: Dongjoon Hyun --- .github/workflows/master.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index bf2feee9077d4..7bb5481a561b9 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -1,6 +1,9 @@ name: master on: + push: + branches: + - master pull_request: branches: - master