From 10e121a5143f6c12bd633b082fa9cfac95ded937 Mon Sep 17 00:00:00 2001 From: Andy Balaam Date: Fri, 26 Nov 2021 16:23:07 +0000 Subject: [PATCH] Review requests workflow (#19911) * Review requests workflow * Move env section up * Use jq instead of sed to process JSON --- .../workflows/triage-move-review-requests.yml | 58 +++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 .github/workflows/triage-move-review-requests.yml diff --git a/.github/workflows/triage-move-review-requests.yml b/.github/workflows/triage-move-review-requests.yml new file mode 100644 index 0000000000..657c07670e --- /dev/null +++ b/.github/workflows/triage-move-review-requests.yml @@ -0,0 +1,58 @@ +name: Move pull requests asking for review to the relevant project +on: + pull_request: + types: [review_requested] +env: + PROJECT_ID: "PN_kwDOAM0swc0sUA" # ID of the project + TEAM: "design" # The team of reviewers + GITHUB_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN }} +jobs: + add_design_pr_to_project: + name: Move PRs asking for design review to the design board + runs-on: ubuntu-latest + steps: + - uses: octokit/graphql-action@v2.x + id: find_team_members + with: + headers: '{"GraphQL-Features": "projects_next_graphql"}' + query: | + query find_team_members($team: String!) { + organization(login: "vector-im") { + team(slug: $team) { + members { + nodes { + login + } + } + } + } + } + team: ${{ env.TEAM }} + - id: any_reviewers_in_the_team + run: | + echo '${{ tojson(fromjson(steps.find_team_members.outputs.data).organization.team.members.nodes[*].login) }}' | tee /tmp/team_members.json + echo '${{ tojson(github.event.pull_request.requested_reviewers[*].login) }}' | tee /tmp/reviewers.json + jq --raw-output .[] < /tmp/team_members.json | sort | tee /tmp/team_members.txt + jq --raw-output .[] < /tmp/reviewers.json | sort | tee /tmp/reviewers.txt + if [ $(join /tmp/team_members.txt /tmp/reviewers.txt | wc -l) = 0 ]; then + echo "::set-output name=match::false" + else + echo "::set-output name=match::true" + fi + - uses: octokit/graphql-action@v2.x + id: add_to_project + if: > + (steps.any_reviewers_in_the_team.outputs.match == 'true') || + (github.event.pull_request.requested_teams.slug == env.TEAM) + with: + headers: '{"GraphQL-Features": "projects_next_graphql"}' + query: | + mutation add_to_project($projectid:String!, $contentid:String!) { + addProjectNextItem(input:{projectId:$projectid contentId:$contentid}) { + projectNextItem { + id + } + } + } + projectid: ${{ env.PROJECT_ID }} + contentid: ${{ github.event.pull_request.node_id }}