Skip to content

Commit

Permalink
chore: Add workflow to auto assign issues
Browse files Browse the repository at this point in the history
  • Loading branch information
vbem committed Jun 3, 2024
1 parent f5602f8 commit 6a2a3e8
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/issue-assign.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
name: Auto Assign Issues

on:
issues:
types: [opened]

jobs:
assign:
runs-on: ubuntu-latest

steps:
- name: Assign issue to repository owner
env:
GITHUB_TOKEN: ${{ github.token }}
run: |
gh issue assign "${{ github.event.issue.number }}" --assignee "${{ github.repository_owner }}"

0 comments on commit 6a2a3e8

Please sign in to comment.