🔨 Add a workflow to draft a release when new tag published

This commit is contained in:
Alicia Sykes 2024-05-25 14:59:34 +01:00
parent 17fa29c54f
commit 4474cccf30
1 changed files with 30 additions and 0 deletions

30
.github/workflows/draft-release.yml vendored Normal file
View File

@ -0,0 +1,30 @@
name: 🏗️ Draft New Release
on:
push:
tags:
- '*.*.*'
jobs:
create-draft-release:
runs-on: ubuntu-latest
steps:
- name: Checkout code 🛎️
uses: actions/checkout@v2
with:
fetch-depth: 0 # We need all history for generating release notes
- name: Create Draft Release 📝
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: true
prerelease: false
generate_release_notes: true
- name: Output new release URL ↗️
run: 'echo "Draft release URL: ${{ steps.create_release.outputs.html_url }}"'