Skip to content

Commit

Permalink
Add auto-assign to thockin
Browse files Browse the repository at this point in the history
  • Loading branch information
thockin committed Jul 17, 2022
1 parent 4a17d0d commit 8704931
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/assign.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Assign

on:
issues:
types: [opened, reopened]
pull_request_target:
types: [opened, reopened]

jobs:
assign:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v6
with:
script: |
github.rest.issues.addAssignees({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
assignees: ['thockin']
})

0 comments on commit 8704931

Please sign in to comment.