Skip to content

Commit

Permalink
Add new workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
BigThunderSR committed Dec 11, 2023
1 parent 74b43f1 commit 708713c
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/auto-assign-issue.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Issue assignment

on:
issues:
types: [opened]

jobs:
auto-assign:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: 'Auto-assign issue'
uses: pozil/auto-assign-issue@v1
with:
assignees: BigThunderSR
numOfAssignee: 1
allowSelfAssign: false

19 changes: 19 additions & 0 deletions .github/workflows/auto-assign-pr.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: PR assignment

on:
pull_request:
types: [opened, edited, synchronize, reopened]

jobs:
auto-assign:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: 'Auto-assign PR'
uses: pozil/auto-assign-issue@v1
with:
assignees: BigThunderSR
numOfAssignee: 1
allowSelfAssign: false

0 comments on commit 708713c

Please sign in to comment.