From f7537c86ef33e1ff0e92fcf74a2105a1d7342bc3 Mon Sep 17 00:00:00 2001 From: Brendan Conron Date: Tue, 17 Sep 2024 08:37:23 -0400 Subject: [PATCH 1/2] added gitflow release workflow --- .github/workflows/gitflow.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/gitflow.yml diff --git a/.github/workflows/gitflow.yml b/.github/workflows/gitflow.yml new file mode 100644 index 0000000..b4cb0f3 --- /dev/null +++ b/.github/workflows/gitflow.yml @@ -0,0 +1,26 @@ +on: + workflow_dispatch: + inputs: + version_increment: + type: choice + required: true + description: "Version increment" + default: "patch" + options: + - "major" + - "minor" + - "patch" + +jobs: + gitflow-release: + name: Gitflow Release + runs-on: macos-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Gitflow Genius Action + uses: ./ + with: + version_increment: ${{ inputs.version_increment }} + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file From 3a1b53a49fbf3a701aba3bbc5e626ec591da1327 Mon Sep 17 00:00:00 2001 From: Brendan Conron Date: Tue, 17 Sep 2024 08:39:44 -0400 Subject: [PATCH 2/2] added name --- .github/workflows/gitflow.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/gitflow.yml b/.github/workflows/gitflow.yml index b4cb0f3..1f5dfbc 100644 --- a/.github/workflows/gitflow.yml +++ b/.github/workflows/gitflow.yml @@ -1,3 +1,5 @@ +name: Gitflow + on: workflow_dispatch: inputs: