We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc6738e commit 68c39d3Copy full SHA for 68c39d3
1 file changed
.github/workflows/sync-fork-once-daily.yaml
@@ -20,5 +20,8 @@ jobs:
20
git remote add upstream https://github.com/curl/curl.git
21
git fetch upstream
22
git checkout ${{ github.ref_name }}
23
- git merge upstream/${{ github.ref_name }}
+ git merge --no-ff --no-commit upstream/${{ github.ref_name }}
24
+ git reset HEAD .github/workflows
25
+ git checkout -- .github/workflows
26
+ git commit -m "Sync with upstream (excluding workflows)"
27
git push origin ${{ github.ref_name }}
0 commit comments