20 lines
428 B
YAML
20 lines
428 B
YAML
name: Create a new branch and link it back to the issue.
|
|
|
|
on:
|
|
issues:
|
|
types:
|
|
- opened
|
|
- reopened
|
|
|
|
jobs:
|
|
create-branch:
|
|
runs-on: node1-runner-timesheet1
|
|
|
|
steps:
|
|
- name: Checkout Repository
|
|
uses: actions/checkout@v3
|
|
clean: 'true'
|
|
ref: 'main'
|
|
|
|
- name: Create a New Branch and Link to Issue
|
|
uses: https://gitea.ethumada.com/gitea/new-issue-branch@develop |