Skip to content

Commit

Permalink
ci: Use GITHUB_OUTPUT envvar instead of set-output command (#8221)
Browse files Browse the repository at this point in the history
  • Loading branch information
arunsathiya committed Jan 19, 2024
1 parent 6a9b549 commit 660868b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pr-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

- name: Process commit and find merger responsible for labeling
id: commit
run: echo "::set-output name=merger::$(python .github/process_commit.py ${{ github.sha }})"
run: echo "merger=$(python .github/process_commit.py ${{ github.sha }})" >> $GITHUB_OUTPUT

- name: Ping merger responsible for labeling if necessary
if: ${{ steps.commit.outputs.merger != '' }}
Expand Down

0 comments on commit 660868b

Please sign in to comment.