Skip to content

Commit

Permalink
Replace deprecated command with environment file (Azure#554)
Browse files Browse the repository at this point in the history
  • Loading branch information
jongwooo authored Sep 19, 2023
1 parent 729a0df commit ab184cb
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows_oca/oca-slack-issue-commented.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
run: |
$isOcaParticipant = "${{ contains(secrets.OCA_PARTICIPANTS, github.event.comment.user.login) }}"
echo "::set-output name=isOcaParticipant::$isOcaParticipant"
echo "isOcaParticipant=$isOcaParticipant" >> $GITHUB_OUTPUT
- name: Add a label
if: ${{ steps.checkpoint.outputs.isOcaParticipant == 'true' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows_oca/oca-slack-issue-opened.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
run: |
$isOcaParticipant = "${{ contains(secrets.OCA_PARTICIPANTS, github.event.issue.user.login) }}"
echo "::set-output name=isOcaParticipant::$isOcaParticipant"
echo "isOcaParticipant=$isOcaParticipant" >> $GITHUB_OUTPUT
- name: Add a label
if: ${{ steps.checkpoint.outputs.isOcaParticipant == 'true' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows_oca/oca-slack-issue-reopened.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
run: |
$isOcaParticipant = "${{ contains(secrets.OCA_PARTICIPANTS, github.event.issue.user.login) }}"
echo "::set-output name=isOcaParticipant::$isOcaParticipant"
echo "isOcaParticipant=$isOcaParticipant" >> $GITHUB_OUTPUT
- name: Add a label
if: ${{ steps.checkpoint.outputs.isOcaParticipant == 'true' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows_oca/oca-slack-pr-created.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
echo "Requester: ${{ github.event.pull_request.user.login }}"
$isOcaParticipant = "${{ contains(secrets.OCA_PARTICIPANTS, github.event.pull_request.user.login) }}"
echo "::set-output name=isOcaParticipant::$isOcaParticipant"
echo "isOcaParticipant=$isOcaParticipant" >> $GITHUB_OUTPUT
- name: Add a label
if: ${{ steps.checkpoint.outputs.isOcaParticipant == 'true' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows_oca/oca-slack-pr-updated.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
echo "Requester: ${{ github.event.pull_request.user.login }}"
$isOcaParticipant = "${{ contains(secrets.OCA_PARTICIPANTS, github.event.pull_request.user.login) }}"
echo "::set-output name=isOcaParticipant::$isOcaParticipant"
echo "isOcaParticipant=$isOcaParticipant" >> $GITHUB_OUTPUT
- name: Send a message to Slack
if: ${{ steps.checkpoint.outputs.isOcaParticipant == 'true' }}
Expand Down

0 comments on commit ab184cb

Please sign in to comment.