We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c991066 commit c073db4Copy full SHA for c073db4
.github/workflows/assign-users.yml
@@ -1,18 +1,13 @@
1
-name: Issue assignment
2
-
3
-on:
4
- issues:
5
- types: [opened]
6
7
-jobs:
8
- auto-assign:
9
- runs-on: ubuntu-latest
10
- permissions:
11
- issues: write
12
- steps:
13
- - name: 'Auto-assign issue'
14
- uses: pozil/auto-assign-issue@v2
15
- with:
16
- assignees: 'abelberhane'
17
- numOfAssignee: 2
18
- allowSelfAssign: false
+reviewers:
+ - name: always_user_name # Always assign this user
+ - name: path_user_name # Assign this user if the path matches
+ paths:
+ - path/to/file
+ - path/**
+ - name: team_name # Assign this team
+ team: true
+ignore:
+ authors: # Ignore PR if these authors contain PR's author
+ - author_name
+ titles: # Ignore PR if PR's title contains these words
+ - wip
0 commit comments