Skip to content

Another test

Another test #16

name: Create Issue Branch
on:
issues:
types: [opened]
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 }}
- name: Echo branch name
run: echo ${{ steps.Create_Issue_Branch.outputs.branchName }}
# on:
# The issues event below is only needed for the default (auto) mode,
# you can remove it otherwise
# issues:
# types: [ assigned ]
# pull_request:
# types: [ closed ]
# jobs:
# create_issue_branch_job:
# runs-on: ubuntu-latest
# steps:
# - name: Create Issue Branch
# id: Create_Issue_Branch
# uses: robvanderleek/create-issue-branch@staging
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# - name: Echo branch name
# run: echo ${{ steps.Create_Issue_Branch.outputs.branchName }}