Skip to content

Commit

Permalink
Create create_branch.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
syss220211 authored May 11, 2024
1 parent 0dffa43 commit bbf8965
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/create_branch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Create Issue Branch
on:
issues:
types: [ assigned ]

jobs:
create_issue_branch_job:
runs-on: ubuntu-latest
steps:
- name: Create Branch From Issue
uses: robvanderleek/create-issue-branch@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Echo branch name
run: echo ${{ steps.Create_Issue_Branch.outputs.branchName }}

0 comments on commit bbf8965

Please sign in to comment.