Skip to content

Release branch

Release branch #4

Workflow file for this run

name: Unit tests
on:
push:
branches: [release/*]
permissions:
contents: write
jobs:
changelog:
name: Update the changelog
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Parse the version from release branch
id: parse_version
run: echo ::set-output name=version::${GITHUB_REF#refs/heads/release/}
- name: Update changelog
uses: thomaseizinger/keep-a-changelog-new-release@9382551541c7cb4b84db90fddcbec69bf2744335
with:
tag: ${{ steps.parse_version.outputs.version }}
# Has write access to the repository, so pinning to a specific commit
- uses: EndBug/add-and-commit@a94899bca583c204427a224a7af87c02f9b325d5
with:
message: "Update changelog for ${{ steps.parse_version.outputs.version }}"
committer_name: GitHub Actions
committer_email: [email protected]