2023-04-20 09:40:07 +00:00
|
|
|
name: Release
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
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-06-09 16:01:23 +00:00
|
|
|
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
2023-04-20 09:40:07 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
- run: corepack enable
|
2023-07-05 16:31:22 +00:00
|
|
|
- uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8 # v3.7.0
|
2023-04-20 09:40:07 +00:00
|
|
|
with:
|
2023-04-24 21:24:38 +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 }}
|