Nuxt/.github/workflows/changelogensets.yml

37 lines
839 B
YAML
Raw Normal View History

2023-04-20 09:40:07 +00:00
name: Release
on:
push:
branches:
- main
permissions:
pull-requests: write
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:
if: github.repository_owner == 'nuxt'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
2023-04-20 09:40:07 +00:00
with:
fetch-depth: 0
- run: corepack enable
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0
2023-04-20 09:40:07 +00:00
with:
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 }}