We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d77e24 commit 1bcc539Copy full SHA for 1bcc539
.github/workflows/sync-with-template.yml
@@ -11,7 +11,16 @@ on:
11
- 'master'
12
schedule:
13
- cron: '47 0/4 * * *' # sync-with-template: adjust
14
- workflow_dispatch: { }
+ workflow_dispatch:
15
+ inputs:
16
+ dryRun:
17
+ required: true
18
+ default: 'false'
19
+ description: Set to 'true' to enable dry run
20
+ type: choice
21
+ options:
22
+ - 'true'
23
+ - 'false'
24
25
defaults:
26
run:
@@ -55,5 +64,6 @@ jobs:
55
64
if: ${{env.PUSH_BACK_TOKEN && fromJSON(steps.decision.outputs.enough) == true}}
56
65
uses: remal-github-actions/sync-with-template@v3
57
66
with:
67
+ dryRun: ${{inputs.dryRun}}
58
68
githubToken: ${{env.PUSH_BACK_TOKEN}}
59
69
templateRepository: ${{secrets.TEMPLATE_REPOSITORY || ''}}
0 commit comments