Bump oxlint #45
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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
with: | |
persist-credentials: false # should be fine, we give another token for PR creation | |
- uses: ./.github/actions/pnpm | |
- name: Generate version ${{ inputs.version }} | |
env: | |
OXLINT_VERSION: ${{ inputs.version }} | |
run: | | |
pnpm install oxlint@${OXLINT_VERSION} | |
pnpm run clone ${OXLINT_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 | |
env: | |
OXLINT_VERSION: ${{ inputs.version }} | |
run: npm version ${OXLINT_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 |