We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3cf9d6e commit b52c8b4Copy full SHA for b52c8b4
2 files changed
.github/workflows/github-pages-deploy.yml
@@ -12,8 +12,6 @@ concurrency:
12
13
jobs:
14
test:
15
- # Skip if push is from sync-main-to-dev bot (code already deployed to staging/GH-Pages & prod/Netlify)
16
- if: github.actor != 'github-actions[bot]'
17
uses: ./.github/workflows/test.yml
18
19
build:
.github/workflows/sync-main-to-dev.yml
@@ -37,6 +37,9 @@ jobs:
37
git reset --hard origin/main
38
fi
39
40
+ # Create empty commit with skip ci to prevent triggering workflows
41
+ git commit --allow-empty -m "chore: sync from main [skip ci]"
42
+
43
# Push with force-with-lease (safe force push that fails if remote has new commits)
44
# This workflow uses a PAT with admin bypass to push directly to the protected branch
45
git push origin dev --force-with-lease
0 commit comments