File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: 'Rebuild Stale PullRequests'
22description : ' Automatically rebuild pull requests when they become stale or the target branch changes.'
33inputs :
44 github_token :
5- description : ' GITHUB_TOKEN, must be specified to be the value: $ {{ secrets.GITHUB_TOKEN }}'
5+ description : ' GITHUB_TOKEN, must be specified to be the value: {{ secrets.GITHUB_TOKEN }}'
66branding :
77 icon : ' arrow-right-circle'
88 color : ' green'
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ async function run() {
55 // Attempt to load credentials from the GitHub OIDC provider.
66 const githubSecretAccessToken = core . getInput ( 'github_token' ) ;
77 if ( ! githubSecretAccessToken ) {
8- core . setFailed ( "Missing use with configuration in the github action, please add to the github workflow: 'github_token: $ {{ secrets.GITHUB_TOKEN }}'" ) ;
8+ core . setFailed ( "Missing use with configuration in the github action, please add to the github workflow: 'github_token: {{ secrets.GITHUB_TOKEN }}'" ) ;
99 core . getInput ( 'github_token' , { required : true } ) ;
1010 throw Error ( 'InvalidInput' ) ;
1111 }
You can’t perform that action at this time.
0 commit comments