We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33e6e73 commit ee79648Copy full SHA for ee79648
2 files changed
.github/workflows/update-migrate-progress.yml
@@ -35,16 +35,11 @@ jobs:
35
- name: Run update migration progress script
36
run: npm run update-migrate-progress
37
38
- - name: Check for changes
39
- id: git-check
40
- run: |
41
- git diff --quiet CPPREF_MIGRATE_PROGRESS.md || echo "has_changes=true" >> $GITHUB_OUTPUT
42
-
43
- - name: Commit and push if changes
44
- if: steps.git-check.outputs.has_changes == 'true'
+ - name: Create orphan branch and force push
45
run: |
46
git config user.name "github-actions[bot]"
47
git config user.email "github-actions[bot]@users.noreply.github.com"
+ git checkout --orphan migrate-progress
48
git add CPPREF_MIGRATE_PROGRESS.md
49
git commit -m "chore: update migration progress [skip ci]"
50
- git push
+ git push --force origin migrate-progress
0 commit comments