File tree Expand file tree Collapse file tree 2 files changed +4
-8
lines changed
Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ permissions:
66
77on :
88 push :
9- branches : [main ]
9+ branches : ["**" ]
1010 paths :
1111 - " frontend/**"
1212 pull_request :
Original file line number Diff line number Diff line change @@ -2,9 +2,7 @@ name: Docs Backfill (on docs changes)
22
33on :
44 push :
5- branches :
6- - main
7- - feat/contributor
5+ branches : ["**"]
86 paths :
97 - " frontend/app/docs/**"
108 - " frontend/scripts/uuid.mjs"
@@ -21,10 +19,8 @@ concurrency:
2119
2220jobs :
2321 backfill :
24- # 防止 fork、限定 main、并避免机器人循环
25- if :
26- (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/feat/contributor') &&
27- github.actor != 'github-actions[bot]'
22+ # 防止 fork 并避免机器人循环
23+ if : github.actor != 'github-actions[bot]'
2824 runs-on : ubuntu-latest
2925 permissions :
3026 contents : write
You can’t perform that action at this time.
0 commit comments