diff options
author | Nejc Habjan <hab.nejc@gmail.com> | 2021-02-06 11:37:22 +0100 |
---|---|---|
committer | Nejc Habjan <hab.nejc@gmail.com> | 2021-02-06 11:37:22 +0100 |
commit | 63918c364e281f9716885a0f9e5401efcd537406 (patch) | |
tree | 5a6662a921a652178a70ee559982bdd3fce310d3 | |
parent | e6c20f18f3bd1dabdf181a070b9fdbfe4a442622 (diff) | |
download | gitlab-chore/deduplicate-pr-jobs.tar.gz |
chore(ci): deduplicate PR jobschore/deduplicate-pr-jobs
-rw-r--r-- | .github/workflows/docs.yml | 8 | ||||
-rw-r--r-- | .github/workflows/lint.yml | 8 | ||||
-rw-r--r-- | .github/workflows/test.yml | 8 |
3 files changed, 21 insertions, 3 deletions
diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 727ef5e..22eec6a 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -1,6 +1,12 @@ name: Docs -on: [push, pull_request] +on: + push: + branches: + - master + pull_request: + branches: + - master env: PY_COLORS: 1 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 535fa01..968320d 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -1,6 +1,12 @@ name: Lint -on: [push, pull_request] +on: + push: + branches: + - master + pull_request: + branches: + - master env: PY_COLORS: 1 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1280962..01e604f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,6 +1,12 @@ name: Test -on: [push, pull_request] +on: + push: + branches: + - master + pull_request: + branches: + - master env: PY_COLORS: 1 |