From 6579bed5b1db124944697f4c38b83fb4a8e9aec6 Mon Sep 17 00:00:00 2001 From: Mariano Asselborn Date: Fri, 13 Jan 2023 15:39:49 -0500 Subject: [PATCH] RELENG-305: add VBA automation to create new release branches --- .github/workflows/create-release-branch.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/workflows/create-release-branch.yml diff --git a/.github/workflows/create-release-branch.yml b/.github/workflows/create-release-branch.yml new file mode 100644 index 0000000000..12f6722536 --- /dev/null +++ b/.github/workflows/create-release-branch.yml @@ -0,0 +1,10 @@ +name: create a release branch +on: [workflow_dispatch] +jobs: + create-branch: + runs-on: [linux, small] + steps: + - uses: actions/checkout@v3 + - uses: hashicorp/actions-create-release-branch@v1 + with: + token: ${{ secrets.ELEVATED_GITHUB_TOKEN }}