File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -3,9 +3,6 @@ name: Q&A
3
3
on :
4
4
workflow_call :
5
5
inputs :
6
- token :
7
- required : true
8
- type : string
9
6
branch :
10
7
default : main
11
8
required : false
16
13
find_yaml :
17
14
required : false
18
15
type : string
16
+ secrets :
17
+ token :
18
+ required : true
19
19
20
20
jobs :
21
21
run-checks :
52
52
name : Remove non-patched packages
53
53
if : " always() && steps.checkout.outcome == 'success'"
54
54
run : |
55
- .github/recipes-checker-main/run list-unpatched-packages $GITHUB_EVENT_PATH ${{ inputs .token }} | xargs -r -n10 rm -rf
55
+ .github/recipes-checker-main/run list-unpatched-packages $GITHUB_EVENT_PATH ${{ secrets .token }} | xargs -r -n10 rm -rf
56
56
57
57
-
58
58
name : Generate Flex testing endpoint
76
76
if : " always() && steps.checkout.outcome == 'success'"
77
77
run : gh pr merge --auto --squash ${{ github.event.number }}
78
78
env :
79
- GITHUB_TOKEN : ${{ inputs .token }}
79
+ GITHUB_TOKEN : ${{ secrets .token }}
80
80
81
81
-
82
82
name : Compute diff between recipe versions
@@ -180,7 +180,7 @@ jobs:
180
180
name : Contribution is under MIT and has no merge commits
181
181
if : " always() && steps.checkout.outcome == 'success'"
182
182
run : |
183
- .github/recipes-checker-main/run lint:pull-request --license=MIT $GITHUB_EVENT_PATH ${{ inputs .token }}
183
+ .github/recipes-checker-main/run lint:pull-request --license=MIT $GITHUB_EVENT_PATH ${{ secrets .token }}
184
184
185
185
-
186
186
name : Parameters should be defined via the "container" configurator
Original file line number Diff line number Diff line change @@ -10,5 +10,5 @@ defaults:
10
10
jobs :
11
11
call-qa :
12
12
uses : symfony/recipes/.github/workflows/callable-qa.yml@main
13
- with :
13
+ secrets :
14
14
token : ${{ secrets.BOT_TOKEN }}
You can’t perform that action at this time.
0 commit comments