-
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
6573158
commit a255d07
Showing
1 changed file
with
6 additions
and
8 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,20 +1,18 @@ | ||
name: Add KomisarMariia as Reviewer for Freezed Branches | ||
name: Add Reviewer for Freezed Branches | ||
|
||
on: | ||
pull_request: | ||
types: [opened, reopened] | ||
branches: | ||
- "v*.*" # Matches branch names like v1.10, v2.5, etc. | ||
- 'v*.*' # Targets branches with names like v1.10, v1.11, etc. | ||
|
||
jobs: | ||
add-reviewer: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Add KomisarMariia as reviewer | ||
uses: actions-ecosystem/action-add-reviewer@v1 | ||
- name: Add Reviewer | ||
uses: octokit/request-action@v2 | ||
with: | ||
reviewers: "KomisarMariia" | ||
# Optionally, set `team-reviewers` if needed, for team-based reviews | ||
route: POST /repos/${{ github.repository }}/pulls/${{ github.event.pull_request.number }}/requested_reviewers | ||
reviewers: KomisarMariia | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.TOKEN }} |