File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change 8
8
push :
9
9
# only trigger on branches, not on tags
10
10
branches : ' **'
11
+ paths-ignore :
12
+ - ' docs/**'
13
+ workflow_dispatch :
14
+ inputs :
15
+ ForceExecution :
16
+ description : ' Force execution of workflow'
17
+ required : false
18
+ default : true
19
+ type : boolean
11
20
12
21
# This workflow contains two jobs called "check" and "build_windows"
13
22
jobs :
53
62
# This workflow contains a single job called "build"
54
63
build_windows :
55
64
needs : check
56
- if : needs.check.outputs.run_job == 'true'
65
+ if : ${{ needs.check.outputs.run_job == 'true' || inputs.ForceExecution == true }}
57
66
# The type of runner that the job will run on
58
67
runs-on : windows-2022
59
68
@@ -850,4 +859,4 @@ jobs:
850
859
done
851
860
echo "Done"
852
861
env :
853
- GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
862
+ GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments