Skip to content

Commit f3b9f48

Browse files
committed
Add autofix
1 parent ef2c1c7 commit f3b9f48

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/autofix.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: autofix.ci # needed to securely identify the workflow
2+
3+
on:
4+
pull_request:
5+
6+
concurrency:
7+
group: ${{ github.workflow }}-${{ github.ref }}
8+
cancel-in-progress: true
9+
10+
jobs:
11+
fix:
12+
name: Run automated fix
13+
uses: prettier/shared-workflows/.github/workflows/automated-fix.yml@main
14+
permissions: {}
15+
with:
16+
repository: prettier/prettier-regression-testing
17+
script: npm ci && npm run fix

0 commit comments

Comments
 (0)