We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d7ce1d commit fd7d1afCopy full SHA for fd7d1af
.github/workflows/autofix.yml
@@ -4,6 +4,13 @@ on:
4
pull_request:
5
push:
6
branches: [main, alpha, beta]
7
+ workflow_dispatch:
8
+ inputs:
9
+ generate-docs:
10
+ description: 'Generate docs'
11
+ required: false
12
+ default: false
13
+ type: boolean
14
15
concurrency:
16
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
@@ -25,7 +32,7 @@ jobs:
25
32
- name: Fix formatting
26
33
run: pnpm prettier:write
27
34
- name: Generate Docs
28
- if: ${{ github.event_name == 'push' }}
35
+ if: ${{ github.event_name == 'push' || github.event.inputs.generate-docs == true }}
29
36
run: pnpm docs:generate
30
37
- name: Apply fixes
31
38
uses: autofix-ci/action@551dded8c6cc8a1054039c8bc0b8b48c51dfc6ef
0 commit comments