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 68d8ec8 commit 9797450Copy full SHA for 9797450
.github/workflows/auto-update-version.yml
@@ -1,6 +1,9 @@
1
name: 🎇 Update Repository
2
3
on:
4
+ push:
5
+ branches:
6
+ - ci/update-version
7
workflow_dispatch:
8
inputs:
9
version:
@@ -18,13 +21,17 @@ jobs:
18
21
with:
19
22
submodules: true
20
23
24
+ - name: update version
25
+ run: |
26
+ cd univer-typedoc/submodules/univer
27
+ git checkout v${{ inputs.version}}
28
+ git pull
29
+
30
- name: UpdateRepository
31
uses: technote-space/create-pr-action@v2
32
33
EXECUTE_COMMANDS: |
- npm version ${{ inputs.version }} --no-git-tag-version
- cd univer-typedoc/submodules/univer
- git checkout v${{ inputs.version}}
34
+ echo 'skip'
35
COMMIT_MESSAGE: 'chore(release): v${{ inputs.version }}'
36
COMMIT_NAME: GitHub Actions
37
PR_BRANCH_PREFIX: create-pr-action/
0 commit comments