We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1634b81 commit 346baccCopy full SHA for 346bacc
2 files changed
.github/workflows/sched1.yml
@@ -0,0 +1,11 @@
1
+name: Scheduled run 1
2
+on:
3
+ schedule: '15 * * * *'
4
+
5
+jobs:
6
+ test_schedule:
7
+ runs-on: ubuntu-latest
8
+ env:
9
+ FOO: ${{ github.event.inputs.dryRun == 'no' && 'null' || github.event.inputs.dryRun || 'null' }}
10
+ steps:
11
+ - run: echo "ok: $FOO"
.github/workflows/sched2.yml
+name: Scheduled run 2
+ FOO: ${{ case( github.event.inputs.dryRun == 'no', 'null', github.event.inputs.dryRun || 'null' ) }}
0 commit comments