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 d83a90f commit 99d6609Copy full SHA for 99d6609
.github/workflows/language-reference.yaml
@@ -66,8 +66,10 @@ jobs:
66
git config user.name gh-actions
67
git config user.email actions@github.com
68
git add .
69
- git commit -m "UPDATE ${{ steps.date.outputs.date }}"
70
- git push
+ if ! git diff-index --quiet HEAD; then
+ git commit -m "UPDATE ${{ steps.date.outputs.date }}"
71
+ git push
72
+ fi
73
cd ..
74
75
- name: Merge changes to main
@@ -79,7 +81,7 @@ jobs:
79
81
git merge language-reference-stable
80
82
83
- - name: Create pull reuqest with backport to main
84
+ - name: Create pull request with backport to main
85
if: github.event_name == 'push'
86
uses: peter-evans/create-pull-request@v4
87
with:
0 commit comments