We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e655525 commit 7fa2a5cCopy full SHA for 7fa2a5c
1 file changed
.github/workflows/sync_main_to_dev.yml
@@ -42,8 +42,10 @@ jobs:
42
run: |
43
git fetch origin main
44
git merge origin/main --no-edit -X ours
45
- # Restore dev-only framework files
46
- git checkout ORIG_HEAD -- docs/index.md
+ # Restore dev-only files: homepage and all workflow files.
+ # Workflow files are excluded because the GitHub App lacks the
47
+ # `workflows` permission required to push changes to them.
48
+ git checkout ORIG_HEAD -- docs/index.md .github/workflows/
49
git diff --cached --quiet || git commit -m "Restore dev framework files after main sync"
50
51
- name: Push dev
0 commit comments