We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ee6d1d commit bbe7172Copy full SHA for bbe7172
2 files changed
.github/workflows/deploy.yml
@@ -6,7 +6,7 @@ permissions:
6
7
on:
8
push:
9
- branches: [main]
+ branches: ["**"]
10
paths:
11
- "frontend/**"
12
pull_request:
.github/workflows/sync-uuid.yml
@@ -2,9 +2,7 @@ name: Docs Backfill (on docs changes)
2
3
4
5
- branches:
- - main
- - feat/contributor
- "frontend/app/docs/**"
- "frontend/scripts/uuid.mjs"
@@ -21,10 +19,8 @@ concurrency:
21
19
22
20
jobs:
23
backfill:
24
- # 防止 fork、限定 main、并避免机器人循环
25
- if:
26
- (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/feat/contributor') &&
27
- github.actor != 'github-actions[bot]'
+ # 防止 fork 并避免机器人循环
+ if: github.actor != 'github-actions[bot]'
28
runs-on: ubuntu-latest
29
permissions:
30
contents: write
0 commit comments