From 54675427d4714b9ef60f5858a40b04bcb9aeda44 Mon Sep 17 00:00:00 2001 From: Adam Matthiesen <30383579+Adammatthiesen@users.noreply.github.com> Date: Fri, 23 Feb 2024 18:48:13 -0800 Subject: [PATCH] Create AutoIssue.yml --- .github/workflows/AutoIssue.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/AutoIssue.yml diff --git a/.github/workflows/AutoIssue.yml b/.github/workflows/AutoIssue.yml new file mode 100644 index 0000000..cf6c191 --- /dev/null +++ b/.github/workflows/AutoIssue.yml @@ -0,0 +1,18 @@ +name: Auto Issue Branch + +on: + issues: + types: [ opened, assigned ] + issue_comment: + types: [ created ] + pull_request: + types: [ opened, closed ] + +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 }}