Skip to content

Commit

Permalink
Create create_branch_for_issue.yml.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
bottlewook authored Jan 2, 2024
1 parent 620a3d6 commit de94f52
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/create_branch_for_issue.yml.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Create Branch For Branch
on:
issues:
types: [ assigned ]
pull_request:
types: [ closed ]

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

0 comments on commit de94f52

Please sign in to comment.