And another test #68
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Create Issue Branch | |
on: | |
issues: | |
types: [opened, assigned] | |
issue_comment: | |
types: [created] | |
jobs: | |
create_issue_branch_job: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set date environment variable value | |
run: | | |
today=$(date +'%d-%m-%Y') | |
echo "DATE_VAR=$today" >> $GITHUB_ENV | |
- name: Create Issue Branch | |
id: Create_Issue_Branch | |
uses: robvanderleek/create-issue-branch@staging | |
env: | |
GITHUB_TOKEN: ${{ secrets.CIB_GITHUB_TOKEN }} | |
- name: Echo branch name (using output variable) | |
run: echo ${{ steps.Create_Issue_Branch.outputs.branchName }} |