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 }}