mirror of
https://github.com/Unleash/unleash.git
synced 2024-11-01 19:07:38 +01:00
d74bee472f
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [metcalfc/changelog-generator](https://togithub.com/metcalfc/changelog-generator) | action | patch | `v4.3.0` -> `v4.3.1` | --- ### Release Notes <details> <summary>metcalfc/changelog-generator (metcalfc/changelog-generator)</summary> ### [`v4.3.1`](https://togithub.com/metcalfc/changelog-generator/releases/tag/v4.3.1): Minor security release 4.3.1 [Compare Source](https://togithub.com/metcalfc/changelog-generator/compare/v4.3.0...v4.3.1) - [d552ecf](d552ecf336
) - Minor ecurity release 4.3.1 - [ee3f2a2](ee3f2a27cf
) - Merge pull request [#​234](https://togithub.com/metcalfc/changelog-generator/issues/234) from metcalfc/dependabot/npm_and_yarn/prettier-3.2.5 - [ee77638](ee776384fd
) - Merge pull request [#​235](https://togithub.com/metcalfc/changelog-generator/issues/235) from metcalfc/dependabot/npm_and_yarn/undici-5.28.3 - [37c250d](37c250dc0c
) - Bump undici from 5.26.4 to 5.28.3 - [393755e](393755e108
) - Bump prettier from 3.2.4 to 3.2.5 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 7pm every weekday,before 5am every weekday" in timezone Europe/Madrid, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMjAuMiIsInVwZGF0ZWRJblZlciI6IjM3LjIyMC4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
28 lines
763 B
YAML
28 lines
763 B
YAML
name: 'Releases'
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'v*'
|
|
|
|
jobs:
|
|
release:
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
- name: Build changelog
|
|
id: github_release
|
|
uses: metcalfc/changelog-generator@v4.3.1
|
|
with:
|
|
myToken: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: Create release
|
|
uses: actions/create-release@v1
|
|
with:
|
|
tag_name: ${{ github.ref }}
|
|
release_name: ${{ github.ref }}
|
|
body: ${{ steps.github_release.outputs.changelog }}
|
|
prerelease: ${{ contains(github.ref, 'beta') || contains(github.ref, 'alpha') }}
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN}}
|