File tree Expand file tree Collapse file tree 2 files changed +31
-2
lines changed
Expand file tree Collapse file tree 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 = {
5858 main : {
5959 prerelease : false ,
6060 } ,
61- next : {
61+ alpha : {
6262 prerelease : true ,
6363 } ,
6464 beta : {
6565 prerelease : true ,
6666 } ,
67- alpha : {
67+ rc : {
6868 prerelease : true ,
6969 } ,
7070}
You can’t perform that action at this time.
0 commit comments