We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9731ddf commit 09e7e4eCopy full SHA for 09e7e4e
.github/workflows/run-tests-cloud.yml
@@ -6,9 +6,12 @@ on:
6
push:
7
branches:
8
- main
9
+ pull_request:
10
+ types: [labeled]
11
12
jobs:
13
cloud:
14
+ if: github.event.label.name == 'tests:run-cloud' || github.event_name == 'push'
15
runs-on: ubuntu-latest
16
defaults:
17
run:
.github/workflows/run-tests-head.yml
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
test-ch-head:
+ if: github.event.label.name == 'tests:run-head' || github.event_name == 'push' || github.event_name == 'schedule'
strategy:
fail-fast: true
0 commit comments