mirror of
https://github.com/android-password-store/Android-Password-Store.git
synced 2025-09-06 17:04:09 +02:00
41 lines
1.4 KiB
YAML
41 lines
1.4 KiB
YAML
name: "Draft new release"
|
|
|
|
on:
|
|
milestone:
|
|
types: [closed]
|
|
|
|
jobs:
|
|
draft-new-release:
|
|
name: "Draft a new release"
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
|
|
with:
|
|
ref: 'release'
|
|
- name: Extract version from milestone
|
|
run: |
|
|
VERSION="${{ github.event.milestone.title }}"
|
|
echo "RELEASE_VERSION=${VERSION/v/}" >> $GITHUB_ENV
|
|
|
|
- name: Update changelog
|
|
uses: thomaseizinger/keep-a-changelog-new-release@96ebf19f2bddaf72406c84691b9c2d827da53140
|
|
with:
|
|
version: ${{ env.RELEASE_VERSION }}
|
|
|
|
- name: Initialize git config and commit changes
|
|
run: |
|
|
git config user.name "GitHub Actions"
|
|
git config user.email noreply@github.com
|
|
|
|
- name: Create Pull Request
|
|
uses: peter-evans/create-pull-request@ce699aa2d108e9d04fde047a71e44b2bf444b6dc
|
|
with:
|
|
author: GitHub Actions <noreply@github.com>
|
|
base: release
|
|
body: This is an automated pull request to bump the changelog for the v${{ env.RELEASE_VERSION }} release.
|
|
branch: release-${{ env.RELEASE_VERSION }}
|
|
commit-message: "CHANGELOG: bump for ${{ env.RELEASE_VERSION }}"
|
|
draft: true
|
|
title: Release v${{ env.RELEASE_VERSION }}
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|