Skip to content

Commit

Permalink
ci: update workflow for git actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Aetherinox committed Mar 29, 2024
1 parent 5a6cd65 commit 32c518f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pr-autoscan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ jobs:
const files_List = `${{ steps.autocheck-get-changed-files.outputs.all_changed_files }}` || ''
const files_Array = files_List.split(',')
const branch_ref = ${ context.payload.pull_request.head.ref }
const branch_ref = `${ context.payload.pull_request.head.ref }`
let message = [ "\n<br />\n" ]
message.push ( "## Automatic Self-Check - #" + context.issue.number + "\n" );
Expand Down Expand Up @@ -652,7 +652,7 @@ jobs:
if ( actor == "${{ env.BOT_NAME_DEPENDABOT }}" && bDependency )
labels.push( "${{ env.LABEL_TYPE_DEPENDENCY }}" );
elseif ( actor == "${{ env.BOT_NAME_DEPENDABOT }}" && bGitaction )
else if ( actor == "${{ env.BOT_NAME_DEPENDABOT }}" && bGitaction )
labels.push( "${{ env.LABEL_TYPE_GITACTION }}" );
if ( context.payload.pull_request.labels.filter( label => label.name === "${{ env.LABEL_CHECK_CHANGES_REQ }}" ).length > 0 )
Expand Down

0 comments on commit 32c518f

Please sign in to comment.