From 00d34fdb2d58c79165ae26d88d2bc32622e5607b Mon Sep 17 00:00:00 2001 From: Madhu Rajanna Date: Wed, 2 Dec 2020 13:27:02 +0530 Subject: [PATCH] ci: run github work flow only for pull request currently github action are getting trigerred for both pull and push request, this commits removes the action for push events. Signed-off-by: Madhu Rajanna --- .github/workflows/build-multi-stage.yaml | 1 - .github/workflows/codespell.yaml | 7 +------ 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/build-multi-stage.yaml b/.github/workflows/build-multi-stage.yaml index f8fbc3f41..9f97eda2f 100644 --- a/.github/workflows/build-multi-stage.yaml +++ b/.github/workflows/build-multi-stage.yaml @@ -2,7 +2,6 @@ name: multi-arch-build # yamllint disable-line rule:truthy on: - push: pull_request: branches: - '*' diff --git a/.github/workflows/codespell.yaml b/.github/workflows/codespell.yaml index 555770b1a..7b0654d20 100644 --- a/.github/workflows/codespell.yaml +++ b/.github/workflows/codespell.yaml @@ -4,14 +4,9 @@ name: Codespell # yamllint disable-line rule:truthy on: - push: - tags: - - v* - branches: - - master pull_request: branches: - - master + - '*' jobs: codespell: name: codespell