-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8459132
commit 32f042f
Showing
1 changed file
with
20 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
name: Add Reviewer for Freezed Branches | ||
# name: Add Reviewer for Freezed Branches | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- 'v*.*' # Matches branches like v1.10, v1.11, etc. | ||
# on: | ||
# pull_request: | ||
# branches: | ||
# - 'v*.*' # Matches branches like v1.10, v1.11, etc. | ||
|
||
jobs: | ||
add-reviewer: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Add KomissarMaria as a reviewer | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.TOKEN }} | ||
run: | | ||
pr_number=${{ github.event.pull_request.number }} | ||
repo=${{ github.repository }} | ||
curl -s -X POST \ | ||
-H "Accept: application/vnd.github+json" \ | ||
-H "Authorization: Bearer $GITHUB_TOKEN" \ | ||
https://api.github.com/repos/$repo/pulls/$pr_number/requested_reviewers \ | ||
-d '{"reviewers":["KomissarMaria"]}' | ||
# jobs: | ||
# add-reviewer: | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - name: Add KomissarMaria as a reviewer | ||
# env: | ||
# GITHUB_TOKEN: ${{ secrets.TOKEN }} | ||
# run: | | ||
# pr_number=${{ github.event.pull_request.number }} | ||
# repo=${{ github.repository }} | ||
# curl -s -X POST \ | ||
# -H "Accept: application/vnd.github+json" \ | ||
# -H "Authorization: Bearer $GITHUB_TOKEN" \ | ||
# https://api.github.com/repos/$repo/pulls/$pr_number/requested_reviewers \ | ||
# -d '{"reviewers":["KomissarMaria"]}' |