We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef2c1c7 commit f3b9f48Copy full SHA for f3b9f48
.github/workflows/autofix.yml
@@ -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