Bump oxlint #37
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Bump oxlint | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
required: true | |
type: string | |
env: | |
OXLINT_PACKAGE_NAME: oxlint | |
jobs: | |
bump: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/pnpm | |
- name: Generate version ${{ inputs.version }} | |
run: | | |
pnpm install oxlint@${{ inputs.version }} | |
pnpm run clone ${{ inputs.version }} | |
pnpm run generate # Generate rules from source code | |
pnpm run format # run prettier over it | |
- name: Test and update snapshot | |
continue-on-error: true # we check in PR why it fails | |
run: pnpm run test -u # Update test snapshots | |
- name: Bump oxlint rules | |
run: npm version ${{ inputs.version }} --no-git-tag-version | |
- uses: peter-evans/create-pull-request@v7 | |
with: | |
# bot account with PAT required for triggering workflow runs | |
# See https://github.com/peter-evans/create-pull-request/blob/main/docs/concepts-guidelines.md#triggering-further-workflow-runs | |
token: ${{ secrets.OXC_BOT_PAT }} | |
commit-message: 'release: v${{ inputs.version }}' | |
committer: Boshen <[email protected]> | |
author: Boshen <[email protected]> | |
branch: release | |
branch-suffix: timestamp | |
title: 'release: v${{ inputs.version }}' | |
assignees: Boshen | |
base: main |