-
Notifications
You must be signed in to change notification settings - Fork 20
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
Naveena
committed
Jul 8, 2022
1 parent
c83007b
commit 72478c4
Showing
1 changed file
with
18 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Auto-assign assignee for Issues opened/reopened/edited. | ||
on: | ||
issues: | ||
types: | ||
- edited | ||
- opened | ||
- reopened | ||
jobs: | ||
issues: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check for event name | ||
run: echo "${{ github.event_name }}" | ||
- name: Add assignees | ||
uses: pozil/auto-assign-issue@v1 | ||
with: | ||
assignees: naveena-maplelabs | ||
allowSelfAssign: True |