-
-
Notifications
You must be signed in to change notification settings - Fork 12
53 lines (45 loc) · 1.69 KB
/
bump_oxlint.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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