File tree Expand file tree Collapse file tree 2 files changed +15
-15
lines changed Expand file tree Collapse file tree 2 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 33 workflow_call :
44 inputs :
55 packages :
6- description : ' Space-separated list of specific packages to update (empty for all)'
6+ description : " Space-separated list of specific packages to update (empty for all)"
77 required : false
88 type : string
9- default : ' '
9+ default : " "
1010 inputs :
11- description : ' Space-separated list of specific inputs to update (empty for all)'
11+ description : " Space-separated list of specific inputs to update (empty for all)"
1212 required : false
1313 type : string
14- default : ' '
14+ default : " "
1515 pr-labels :
16- description : ' Comma-separated list of labels to add to PRs'
16+ description : " Comma-separated list of labels to add to PRs"
1717 required : false
1818 type : string
19- default : ' dependencies,automated'
19+ default : " dependencies,automated"
2020 auto-merge :
21- description : ' Enable auto-merge for created pull requests'
21+ description : " Enable auto-merge for created pull requests"
2222 required : false
2323 type : boolean
2424 default : false
2525 secrets :
2626 APP_ID :
27- description : ' GitHub App ID'
27+ description : " GitHub App ID"
2828 required : true
2929 APP_PRIVATE_KEY :
30- description : ' GitHub App private key'
30+ description : " GitHub App private key"
3131 required : true
3232jobs :
3333 discover :
Original file line number Diff line number Diff line change @@ -2,24 +2,24 @@ name: Update Dependencies
22on :
33 schedule :
44 # Run daily at 2 AM UTC
5- - cron : ' 0 2 * * *'
5+ - cron : " 0 2 * * *"
66 workflow_dispatch :
77 inputs :
88 packages :
9- description : ' Specific packages to update (space-separated, empty for all)'
9+ description : " Specific packages to update (space-separated, empty for all)"
1010 required : false
11- default : ' '
11+ default : " "
1212 inputs :
13- description : ' Specific flake inputs to update (space-separated, empty for all)'
13+ description : " Specific flake inputs to update (space-separated, empty for all)"
1414 required : false
15- default : ' '
15+ default : " "
1616jobs :
1717 update :
1818 uses : ./.github/workflows/update-flake.yml
1919 with :
2020 packages : ${{ github.event.inputs.packages }}
2121 inputs : ${{ github.event.inputs.inputs }}
22- pr-labels : ' dependencies,automated'
22+ pr-labels : " dependencies,automated"
2323 auto-merge : true
2424 secrets :
2525 APP_ID : ${{ secrets.APP_ID }}
You can’t perform that action at this time.
0 commit comments