Keep Release #35
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Keep Release | |
on: | |
workflow_dispatch: | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
concurrency: release | |
permissions: | |
id-token: write | |
contents: write | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
persist-credentials: false | |
ref: main | |
- name: Release Keep | |
id: release-step | |
uses: python-semantic-release/[email protected] | |
with: | |
git_committer_name: Keep Release Bot | |
git_committer_email: [email protected] | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
push: false | |
tag: true | |
commit: true | |
- name: Open PR for release branch | |
uses: peter-evans/[email protected] | |
with: | |
committer: Keep Release Bot <[email protected]> | |
title: "Release - $(date +'%Y-%m-%d')" | |
branch: release/${{ steps.release-step.outputs.version }} | |
body: "This PR contains the latest release changes." | |
draft: false | |
base: main |