Nuxt/.github/workflows/changelogensets.yml
StepSecurity Bot 4a64a64b9e
ci: apply security best practices to workflows (#21328)
Signed-off-by: StepSecurity Bot <bot@stepsecurity.io>
Co-authored-by: Daniel Roe <daniel@roe.dev>
2023-06-02 18:14:21 +01:00

37 lines
839 B
YAML

name: Release
on:
push:
branches:
- main
permissions:
pull-requests: write
contents: write
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@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
with:
fetch-depth: 0
- run: corepack enable
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0
with:
node-version: 20
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- run: pnpm jiti ./scripts/update-changelog.ts
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}