From c64803d5f1eddb5515cdfcd54e2f03923883ecf8 Mon Sep 17 00:00:00 2001 From: Konrad Szwarc Date: Tue, 30 Aug 2022 23:51:53 +0200 Subject: [PATCH] Add GitHub action to automatically create branches for assigned issues --- .github/workflows/create-issue-branch.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/create-issue-branch.yml diff --git a/.github/workflows/create-issue-branch.yml b/.github/workflows/create-issue-branch.yml new file mode 100644 index 0000000..903037f --- /dev/null +++ b/.github/workflows/create-issue-branch.yml @@ -0,0 +1,16 @@ +name: Create Issue Branch + +on: + issues: + types: [assigned] + pull_request: + types: [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 }}