mirror of
https://github.com/Unleash/unleash.git
synced 2024-10-28 19:06:12 +01:00
68e52bc2d1
[![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 | minor | `v4.2.0` -> `v4.3.0` | --- ### Release Notes <details> <summary>metcalfc/changelog-generator (metcalfc/changelog-generator)</summary> ### [`v4.3.0`](https://togithub.com/metcalfc/changelog-generator/releases/tag/v4.3.0): Release 4.3.0 [Compare Source](https://togithub.com/metcalfc/changelog-generator/compare/v4.2.0...v4.3.0) - [5710657](571065701c
) - 4.3.0 - [d64427e](d64427ece7
) - Fixes [#​233](https://togithub.com/metcalfc/changelog-generator/issues/233). - [c99a214](c99a2146fd
) - Merge pull request [#​232](https://togithub.com/metcalfc/changelog-generator/issues/232) from metcalfc/dependabot/npm_and_yarn/prettier-3.2.4 - [65359c1](65359c133b
) - Merge pull request [#​230](https://togithub.com/metcalfc/changelog-generator/issues/230) from metcalfc/dependabot/npm_and_yarn/eslint-8.56.0 - [05ae609](05ae60923d
) - Bump prettier from 3.1.1 to 3.2.4 - [e6c9d6d](e6c9d6d1ec
) - Bump eslint from 8.55.0 to 8.56.0 - [9d87e6f](9d87e6ffe4
) - Merge pull request [#​229](https://togithub.com/metcalfc/changelog-generator/issues/229) from metcalfc/dependabot/github_actions/github/codeql-action-3 - [eb7a73f](eb7a73f946
) - Merge pull request [#​228](https://togithub.com/metcalfc/changelog-generator/issues/228) from metcalfc/dependabot/npm_and_yarn/prettier-3.1.1 - [14bc30b](14bc30bb4b
) - Bump github/codeql-action from 2 to 3 - [a5f5ca4](a5f5ca4d27
) - Bump prettier from 3.1.0 to 3.1.1 - [e4c40c1](e4c40c1dc7
) - Merge pull request [#​227](https://togithub.com/metcalfc/changelog-generator/issues/227) from metcalfc/dependabot/github_actions/actions/stale-9 - [12b2b68](12b2b68eab
) - Bump actions/stale from 8 to 9 - [0119200](0119200ab4
) - Merge pull request [#​226](https://togithub.com/metcalfc/changelog-generator/issues/226) from metcalfc/dependabot/npm_and_yarn/eslint-8.55.0 - [7baf17f](7baf17fb20
) - Bump eslint from 8.53.0 to 8.55.0 </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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNzMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjE3My4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> 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.0
|
|
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}}
|