diff --git a/.github/workflows/test-local-action-with-conditionals.yaml b/.github/workflows/test-local-action-with-conditionals.yaml index b51b99e..fe2dd57 100644 --- a/.github/workflows/test-local-action-with-conditionals.yaml +++ b/.github/workflows/test-local-action-with-conditionals.yaml @@ -1,4 +1,12 @@ -on: [push] +name: "Test local with conditionals" +on: + workflow_dispatch: + pull_request: + release: + types: [published] + push: + branches: ["main"] + tags: ["*"] jobs: local_test_options: diff --git a/.github/workflows/test-local-action.yaml b/.github/workflows/test-local-action.yaml index 9333e47..85d08f7 100644 --- a/.github/workflows/test-local-action.yaml +++ b/.github/workflows/test-local-action.yaml @@ -1,4 +1,12 @@ -on: [push] +name: "Test local action" +on: + workflow_dispatch: + pull_request: + release: + types: [published] + push: + branches: ["main"] + tags: ["*"] jobs: local_test: diff --git a/.github/workflows/test-public-action.yaml b/.github/workflows/test-public-action.yaml index 436b14c..8a6427f 100644 --- a/.github/workflows/test-public-action.yaml +++ b/.github/workflows/test-public-action.yaml @@ -1,4 +1,12 @@ -on: [push] +name: "Test public from main" +on: + workflow_dispatch: + pull_request: + release: + types: [published] + push: + branches: ["main"] + tags: ["*"] jobs: public_test: