Add GitHub action to automatically create branches for assigned issues
This commit is contained in:
parent
b0e5e80cf9
commit
c64803d5f1
1 changed files with 16 additions and 0 deletions
16
.github/workflows/create-issue-branch.yml
vendored
Normal file
16
.github/workflows/create-issue-branch.yml
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
name: Create Issue Branch
|
||||
|
||||
on:
|
||||
issues:
|
||||
types: [assigned]
|
||||
pull_request:
|
||||
types: [closed]
|
||||
|
||||
jobs:
|
||||
create_issue_branch_job:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Create Issue Branch
|
||||
uses: robvanderleek/create-issue-branch@main
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
Loading…
Reference in a new issue