Skip to content

[Contribution Guide Update] Adding List guidance for sub-resources #21589

[Contribution Guide Update] Adding List guidance for sub-resources

[Contribution Guide Update] Adding List guidance for sub-resources #21589

---
name: "Pull Request Reviewed"
on:
pull_request_review:
types: [submitted]
permissions:
pull-requests: read
jobs:
add-or-remove-waiting-response:
runs-on: ubuntu-latest
steps:
- name: "Set Artifacts"
shell: bash
run: |
mkdir -p wr_actions
echo ${{ github.owner }} > wr_actions/ghowner.txt
echo ${{ github.repository }} > wr_actions/ghrepo.txt
echo ${{ github.event.pull_request.number }} > wr_actions/prnumber.txt
echo ${{ github.event.review.user.login }} > wr_actions/reviewer.txt
echo ${{ github.event.review.state }} > wr_actions/reviewstate.txt
- name: "Set Artifacts for add-waiting-response"
if: github.event.review.state != 'approved' && github.actor != github.event.pull_request.user.login
shell: bash
run: |
mkdir -p wr_actions
echo "add-waiting-response" > wr_actions/action.txt
- name: "Set Artifacts for remove-waiting-response"
if: github.actor == github.event.pull_request.user.login
shell: bash
run: |
mkdir -p wr_actions
echo "remove-waiting-response" > wr_actions/action.txt
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
with:
name: artifact
path: wr_actions