Skip to content
This repository has been archived by the owner on Feb 6, 2023. It is now read-only.

Add github action to create a branch from assigned issue. #29

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/issue-branch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
branches:
- label: enhancement
prefix: feature/
- label: bug
prefix: bugfix/
- label: documentation
prefix: docs/
- label: maintenance
prefix: maint/
10 changes: 10 additions & 0 deletions .github/workflow/create_issue_branch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
on:
issues:
types: [assigned]

jobs:
create_issue_branch_job:
runs-on: ubuntu-latest
steps:
- name: Create Issue Branch
uses: robvanderleek/create-issue-branch@master