File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed
Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ name : Polish the code
3+
4+ on :
5+ push :
6+ branches-ignore :
7+ # notest branches to ignore testing of partial online commits
8+ - " notest/**"
9+
10+ pull_request :
11+ branches-ignore :
12+ # notest branches to ignore testing of partial online commits
13+ - " notest/**"
14+
15+ permissions :
16+ # only prettier-fix needs write permission, for others read is enough
17+ contents : read
18+
19+ jobs :
20+ prettier-fix :
21+ # Note: runs-on doesn't accept all expressions, so a string is used
22+ runs-on : " ubuntu-24.04"
23+ permissions :
24+ contents : write
25+ # Limit the running time
26+ timeout-minutes : 10
27+ steps :
28+ - name : Invoke the Prettier fix
29+ uses : WorkOfStan/prettier-fix@v1.1.0
30+ with :
31+ commit-changes : true
32+
33+ super-linter :
34+ needs : prettier-fix
35+ uses : WorkOfStan/seablast-actions/.github/workflows/linter.yml@feature/fetch-latest
36+ with :
37+ runs-on : " ubuntu-24.04"
You can’t perform that action at this time.
0 commit comments