setup-gcloud/.github/workflows/draft-release.yml
Seth Vargo e838bc6edf
Update deps (#716)
Fixes https://github.com/google-github-actions/setup-gcloud/issues/714
by updating the setup-cloud-sdk action to the latest version which
implements retries for all errors (not just HTTP).
2025-07-18 16:02:58 -04:00

25 lines
726 B
YAML

name: 'Draft release'
on:
workflow_dispatch:
inputs:
version_strategy:
description: 'Version strategy: The strategy to used to update the version based on semantic versioning (more info at https://semver.org/).'
required: true
default: 'patch'
type: 'choice'
options:
- 'major'
- 'minor'
- 'patch'
jobs:
draft-release:
uses: 'google-github-actions/.github/.github/workflows/draft-release.yml@v3' # ratchet:exclude
permissions:
contents: 'read'
pull-requests: 'write'
with:
version_strategy: '${{ github.event.inputs.version_strategy }}'
secrets:
ACTIONS_BOT_TOKEN: '${{ secrets.ACTIONS_BOT_TOKEN }}'