Skip to content

Commit e0bb7fe

Browse files
authored
Merge pull request #1078 from pytorch/assigner
Adding an action to automatically assign reviewers and assignees
2 parents 1dc55de + 3ba0776 commit e0bb7fe

File tree

11 files changed

+14013
-0
lines changed

11 files changed

+14013
-0
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
* text=auto
2+
.licenses/** -diff linguist-generated=true
3+
4+
# don't diff machine generated files
5+
dist/index.js -diff
6+
package-lock.json -diff

.github/actions/assigner/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.DS_Store
2+
node_modules/
3+
lib/
4+
!dist

.github/actions/assigner/action.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: 'Assigner'
2+
description: 'Automatically assign issues based on label to component owners for triaging'
3+
inputs:
4+
repo-token:
5+
description: 'GITHUB_TOKEN secret'
6+
config-path:
7+
description: 'Path to code-owners list'
8+
required: true
9+
10+
runs:
11+
using: 'node16'
12+
main: 'dist/index.js'

0 commit comments

Comments
 (0)