2023-04-20 09:40:07 +00:00
|
|
|
name: Release
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
2023-09-04 08:16:51 +00:00
|
|
|
- 2.x
|
2023-04-20 09:40:07 +00:00
|
|
|
|
|
|
|
permissions:
|
|
|
|
pull-requests: write
|
2023-04-20 09:45:25 +00:00
|
|
|
contents: write
|
2023-04-20 09:40:07 +00:00
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.event.number || github.sha }}
|
|
|
|
cancel-in-progress: ${{ github.event_name != 'push' }}
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
update-changelog:
|
2023-06-23 12:02:52 +00:00
|
|
|
if: github.repository_owner == 'nuxt' && !contains(github.event.head_commit.message, 'v3.')
|
2023-04-20 09:40:07 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2023-10-18 09:06:36 +00:00
|
|
|
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
2023-04-20 09:40:07 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
- run: corepack enable
|
2023-12-18 18:06:22 +00:00
|
|
|
- uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1
|
2023-04-20 09:40:07 +00:00
|
|
|
with:
|
2023-09-11 22:46:22 +00:00
|
|
|
node-version: 20
|
2023-04-20 09:40:07 +00:00
|
|
|
cache: "pnpm"
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: pnpm install
|
|
|
|
|
|
|
|
- run: pnpm jiti ./scripts/update-changelog.ts
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|