diff --git a/.github/workflows/create-tag.yml b/.github/workflows/create-tag.yml index 73dafedc5d..544230c1f4 100644 --- a/.github/workflows/create-tag.yml +++ b/.github/workflows/create-tag.yml @@ -3,6 +3,11 @@ name: "Create and push release tag" on: workflow_dispatch: + inputs: + version: + description: 'Version to tag. Useful for making the first "dot" release from a rhel-x.y branch.' + required: false + default: "" schedule: - cron: "0 8 * * 3" @@ -22,3 +27,4 @@ jobs: token: "${{ secrets.SCHUTZBOT_GITHUB_ACCESS_TOKEN }}" username: "imagebuilder-bot" email: "imagebuilder-bots+imagebuilder-bot@redhat.com" + version: ${{ github.event.inputs.version }}