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-09-23 15:10:28 +00:00
|
|
|
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
|
2023-04-20 09:40:07 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
- run: corepack enable
|
2023-08-18 15:05:38 +00:00
|
|
|
- uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.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 }}
|