diff options
| author | Stephen Sorriaux <stephen.sorriaux@gmail.com> | 2021-11-29 10:58:26 -0500 |
|---|---|---|
| committer | Stephen Sorriaux <stephen.sorriaux@gmail.com> | 2021-11-29 10:58:26 -0500 |
| commit | baff5b5462b0fa6dac39fe36f9cb91a3aaf78b98 (patch) | |
| tree | 347a3bb8f7d0c6172d59bacdf64a7820eda59d47 | |
| parent | 234dd7820dc4cd6f9539f6926693cd06373b0d6b (diff) | |
| download | kazoo-fix/github-action-trigger.tar.gz | |
chore(ci): better specify how to trigger Github Actionsfix/github-action-trigger
| -rw-r--r-- | .github/workflows/release.yml | 5 | ||||
| -rw-r--r-- | .github/workflows/testing.yml | 10 |
2 files changed, 13 insertions, 2 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index be4b772..bb47781 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,6 +1,9 @@ name: Kazoo Awesome Release -on: [push] +on: + push: + tags: + - '*' jobs: build-and-release: diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index d6690fc..0edfe49 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -1,6 +1,14 @@ name: Kazoo Awesome Testing -on: [push] +on: + push: + branches: + - master + - release/* + pull_request: + branches: + - master + - release/* jobs: test: |
