We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7715d9c commit c2a42daCopy full SHA for c2a42da
.github/workflows/auto_tag_master.yml
@@ -11,6 +11,7 @@ on:
11
- '.github/**'
12
- '*.md'
13
- '.vscode/**'
14
+ - 'public/base.manifest.json'
15
workflow_dispatch:
16
17
jobs:
@@ -50,5 +51,7 @@ jobs:
50
51
file_pattern: public/base.manifest.json
52
- name: Tag branch
53
run: |
54
+ git config --global user.name "github-actions[bot]"
55
+ git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
56
git tag -a ${{ steps.tag_version.outputs.new_tag }} -m "Tag ${{ steps.tag_version.outputs.new_tag }}."
57
git push origin ${{ steps.tag_version.outputs.new_tag }}
0 commit comments