Skip to content

Commit

Permalink
GHA for T2 only reviews
Browse files Browse the repository at this point in the history
  • Loading branch information
jyejare committed Jul 20, 2023
1 parent ea28168 commit 14d4ef0
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/t2_reviews.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Github Action to Automatically assign T2 Reviewers to framework touched PRs
name: Auto assign T2 Reviewers

on:
pull_request:
paths: ['*', '.github/**', 'conf/**', 'pytest_fixtures/core/*', 'pytest_plugins/**', 'robottelo/**', '!robottelo/constants/*', 'scripts/**']

env:
NUMBER: ${{ github.event.number }}
REVIEWERS: '["robottelo-tier-2-reviewers"]'
LABELS: '["Framework Changes"]'
SATQE_TOKEN: ${{ secrets.CHERRYPICK_PAT }}

jobs:
assign-reviewers-and-labels:
name: Assign T2 Reviewers and Labels to the PR
runs-on: ubuntu-latest
steps:
- name: Add Labels to the PR
run: |
echo "Adding applicable labels to the PR $NUMBER"
curl -L -X POST \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer $SATQE_TOKEN" \
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/SatelliteQE/robottelo/issues/$NUMBER/labels \
-d '{"labels": '"$LABELS"'}'
- name: Assign T2 Reviewers Team to the PR
run: |
echo "Assigning T2 Reviewers to the PR $number"
curl -L \
-X POST \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer $SATQE_TOKEN" \
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/SatelliteQE/robottelo/pulls/$NUMBER/requested_reviewers \
-d '{"team_reviewers": '"${REVIEWERS}"'}'

0 comments on commit 14d4ef0

Please sign in to comment.