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 7f74021 commit 43e4180Copy full SHA for 43e4180
.github/workflows/bump-docs-version.yml
@@ -3,6 +3,7 @@ name: "Bump Docs Version"
3
on:
4
release:
5
types: [released]
6
+ workflow_dispatch:
7
8
permissions:
9
contents: write
@@ -43,6 +44,12 @@ jobs:
43
44
pnpm version ${{ steps.extract_version.outputs.version }} --no-git-tag-version
45
echo "Updated docs/package.json to version ${{ steps.extract_version.outputs.version }}"
46
47
+ - name: Pull latest changes
48
+ run: |
49
+ git config --global user.name "github-actions[bot]"
50
+ git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
51
+ git pull origin main --rebase
52
+
53
- name: Commit updated package.json
54
uses: stefanzweifel/git-auto-commit-action@v6
55
with:
0 commit comments