diff --git a/.github/workflows/auto-issue.yml b/.github/workflows/auto-issue.yml new file mode 100644 index 00000000..6c85e676 --- /dev/null +++ b/.github/workflows/auto-issue.yml @@ -0,0 +1,16 @@ +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 }}