1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-28 19:06:12 +01:00
unleash.unleash/.github/workflows/release_changelog.yml

28 lines
763 B
YAML
Raw Normal View History

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
chore(deps): update metcalfc/changelog-generator action to v4.3.0 (#6213) [![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](http://github.com/metcalfc/changelog-generator/commit/571065701c93920f7a6ef3a5671b76e2c3442f91) - 4.3.0 - [d64427e](http://github.com/metcalfc/changelog-generator/commit/d64427ece70e3f483d16af0c4f1f475071862249) - Fixes [#&#8203;233](https://togithub.com/metcalfc/changelog-generator/issues/233). - [c99a214](http://github.com/metcalfc/changelog-generator/commit/c99a2146fd7e025973a65c39c53d4718777ab9c7) - Merge pull request [#&#8203;232](https://togithub.com/metcalfc/changelog-generator/issues/232) from metcalfc/dependabot/npm_and_yarn/prettier-3.2.4 - [65359c1](http://github.com/metcalfc/changelog-generator/commit/65359c133b900f8969d3bc00b5d96fa3d59e0a04) - Merge pull request [#&#8203;230](https://togithub.com/metcalfc/changelog-generator/issues/230) from metcalfc/dependabot/npm_and_yarn/eslint-8.56.0 - [05ae609](http://github.com/metcalfc/changelog-generator/commit/05ae60923d5ce1564a21cb7ff5543db0260ef30a) - Bump prettier from 3.1.1 to 3.2.4 - [e6c9d6d](http://github.com/metcalfc/changelog-generator/commit/e6c9d6d1ecd46bbf84fda465290eebf035675a42) - Bump eslint from 8.55.0 to 8.56.0 - [9d87e6f](http://github.com/metcalfc/changelog-generator/commit/9d87e6ffe4b8aada722be309f438aa00d0f3a792) - Merge pull request [#&#8203;229](https://togithub.com/metcalfc/changelog-generator/issues/229) from metcalfc/dependabot/github_actions/github/codeql-action-3 - [eb7a73f](http://github.com/metcalfc/changelog-generator/commit/eb7a73f9461f51e57b9f2559ec8a356491e21157) - Merge pull request [#&#8203;228](https://togithub.com/metcalfc/changelog-generator/issues/228) from metcalfc/dependabot/npm_and_yarn/prettier-3.1.1 - [14bc30b](http://github.com/metcalfc/changelog-generator/commit/14bc30bb4b1b8e36f85cc902eb5d151efce915d4) - Bump github/codeql-action from 2 to 3 - [a5f5ca4](http://github.com/metcalfc/changelog-generator/commit/a5f5ca4d27def7c77c505249967bbc312b4fdd57) - Bump prettier from 3.1.0 to 3.1.1 - [e4c40c1](http://github.com/metcalfc/changelog-generator/commit/e4c40c1dc787aa7def202a9d36ed6f3bf6b44a01) - Merge pull request [#&#8203;227](https://togithub.com/metcalfc/changelog-generator/issues/227) from metcalfc/dependabot/github_actions/actions/stale-9 - [12b2b68](http://github.com/metcalfc/changelog-generator/commit/12b2b68eab11176e9d75c44497ccfcc23606b831) - Bump actions/stale from 8 to 9 - [0119200](http://github.com/metcalfc/changelog-generator/commit/0119200ab4f6106ad22161239627c955f16b8191) - Merge pull request [#&#8203;226](https://togithub.com/metcalfc/changelog-generator/issues/226) from metcalfc/dependabot/npm_and_yarn/eslint-8.55.0 - [7baf17f](http://github.com/metcalfc/changelog-generator/commit/7baf17fb20e603dde0dfdfb988913a4a1cb5806f) - 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>
2024-02-13 04:35:09 +01:00
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 }}
2022-09-09 08:51:56 +02:00
body: ${{ steps.github_release.outputs.changelog }}
prerelease: ${{ contains(github.ref, 'beta') || contains(github.ref, 'alpha') }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN}}