Nuxt/.github/workflows/changelog.yml

40 lines
980 B
YAML
Raw Permalink Normal View History

name: changelog
2023-04-20 09:40:07 +00:00
on:
push:
branches:
- main
- 3.x
2023-04-20 09:40:07 +00:00
permissions: {}
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:
if: github.repository_owner == 'nuxt' && !contains(github.event.head_commit.message, 'v3.') && !contains(github.event.head_commit.message, 'v4.')
2023-04-20 09:40:07 +00:00
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
2023-04-20 09:40:07 +00:00
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
2023-04-20 09:40:07 +00:00
with:
fetch-depth: 0
- run: corepack enable
- uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
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 }}