Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 36 additions & 1 deletion .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ on:
- 'release_*'
pull_request_target:
types: [opened, reopened, synchronize]
workflow_dispatch:
inputs:
version:
description: 'Version to use for the release draft (optional)'
required: false
type: string

permissions:
contents: read
Expand All @@ -34,9 +40,38 @@ jobs:
echo "version=${RELEASE_VERSION}" >> $GITHUB_OUTPUT
echo "Galaxy release version: ${RELEASE_VERSION}"

- name: Check if we should update draft
id: check-draft
run: |
VERSION="${{ inputs.version || steps.galaxy-version.outputs.version }}"

# Check if this version is already published
PUBLISHED=$(gh release view "v${VERSION}" --json isDraft --jq '.isDraft' 2>/dev/null || echo "not_found")

if [ "$PUBLISHED" = "false" ]; then
echo "Published release v${VERSION} already exists. Skipping."
echo "skip=true" >> $GITHUB_OUTPUT
exit 0
fi

# Check if a draft exists for a DIFFERENT version (only one draft at a time)
EXISTING_DRAFT=$(gh release list --limit 50 --json tagName,isDraft --jq '.[] | select(.isDraft == true) | .tagName' | head -1)

if [ -n "$EXISTING_DRAFT" ] && [ "$EXISTING_DRAFT" != "v${VERSION}" ]; then
echo "Draft release $EXISTING_DRAFT already exists (for different version). Skipping v${VERSION}."
echo "Only one draft release at a time is supported."
echo "skip=true" >> $GITHUB_OUTPUT
else
echo "Proceeding with draft for v${VERSION}."
echo "skip=false" >> $GITHUB_OUTPUT
fi
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- uses: release-drafter/release-drafter@v6
if: steps.check-draft.outputs.skip == 'false'
with:
config-name: release-drafter.yml
version: ${{ steps.galaxy-version.outputs.version }}
version: ${{ inputs.version || steps.galaxy-version.outputs.version }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Loading