We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1ee3cd commit 8947c29Copy full SHA for 8947c29
2 files changed
.github/workflows/CI.yml
@@ -10,7 +10,7 @@ on:
10
11
jobs:
12
call:
13
- if: contains(github.event.pull_request.labels.*.name, 'run ci')
+ if: github.event_name != 'pull_request' || contains(github.event.pull_request.labels.*.name, 'run ci')
14
uses: control-toolbox/CTActions/.github/workflows/ci.yml@main
15
with:
16
runs_on: '["ubuntu-latest"]'
.github/workflows/Documentation.yml
@@ -10,5 +10,5 @@ on:
- if: contains(github.event.pull_request.labels.*.name, 'run documentation')
+ if: github.event_name != 'pull_request' || contains(github.event.pull_request.labels.*.name, 'run documentation')
uses: control-toolbox/CTActions/.github/workflows/documentation.yml@main
0 commit comments