Skip to content

Commit

Permalink
Add assign-issue workflow (#141)
Browse files Browse the repository at this point in the history
  • Loading branch information
koppor authored Nov 1, 2024
1 parent 3078081 commit ca17ca4
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/assign.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Assign Issue

on:
schedule:
- cron: 3 7 * * *
issue_comment:
types: [created]
workflow_dispatch:

jobs:
assign:
permissions:
issues: write
runs-on: ubuntu-latest
steps:
- name: Assign the user or unassign stale assignments
uses: takanome-dev/assign-issue-action@beta
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
maintainers: 'mattjegan,koppor'

0 comments on commit ca17ca4

Please sign in to comment.