File tree 2 files changed +31
-2
lines changed
2 files changed +31
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : autofix.ci # needed to securely identify the workflow
2
+
3
+ on :
4
+ pull_request :
5
+ push :
6
+ branches : [main, alpha, beta, rc]
7
+
8
+ concurrency :
9
+ group : ${{ github.workflow }}-${{ github.event.number || github.ref }}
10
+ cancel-in-progress : true
11
+
12
+ permissions :
13
+ contents : read
14
+
15
+ jobs :
16
+ autofix :
17
+ name : autofix
18
+ runs-on : ubuntu-latest
19
+ steps :
20
+ - name : Checkout
21
+ uses : actions/checkout@v4
22
+ - name : Setup Tools
23
+ uses : tanstack/config/.github/setup@main
24
+ - name : Fix formatting
25
+ run : pnpm prettier:write
26
+ - name : Apply fixes
27
+ uses : autofix-ci/action@dd55f44df8f7cdb7a6bf74c78677eb8acd40cd0a
28
+ with :
29
+ commit-message : ' ci: apply automated fixes'
Original file line number Diff line number Diff line change @@ -58,13 +58,13 @@ export const branchConfigs = {
58
58
main : {
59
59
prerelease : false ,
60
60
} ,
61
- next : {
61
+ alpha : {
62
62
prerelease : true ,
63
63
} ,
64
64
beta : {
65
65
prerelease : true ,
66
66
} ,
67
- alpha : {
67
+ rc : {
68
68
prerelease : true ,
69
69
} ,
70
70
}
You can’t perform that action at this time.
0 commit comments