We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1634b81 commit bc8162dCopy full SHA for bc8162d
2 files changed
.github/workflows/sched1.yml
@@ -0,0 +1,13 @@
1
+name: Scheduled run 1
2
+on:
3
+ schedule:
4
+ - cron: '18 * * * *'
5
+
6
+jobs:
7
+ test_schedule:
8
+ runs-on: ubuntu-latest
9
+ env:
10
+ FOO: ${{ github.event.inputs.dryRun == 'no' && 'null' || github.event.inputs.dryRun || 'null' }}
11
+ steps:
12
+ - run: |
13
+ 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