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.
2 parents e98a547 + 9d2f917 commit 98a996eCopy full SHA for 98a996e
.github/workflows/release.yml
@@ -17,6 +17,11 @@ jobs:
17
steps:
18
- uses: actions/checkout@v4
19
20
+ - name: Set up git user
21
+ run: |
22
+ git config --global user.name "github-actions[bot]"
23
+ git config --global user.email "github-actions[bot]@users.noreply.github.com"
24
+
25
- name: Prepare repository
26
# Fetch full git history and tags
27
run: git fetch --unshallow --tags
@@ -37,6 +42,9 @@ jobs:
37
42
wget -O- "$auto_download_url" | gunzip > ~/auto
38
43
chmod a+x ~/auto
39
44
45
+ - name: Create auto labels if they don't exist
46
+ run: ~/auto create-labels
47
40
48
- name: Create release
41
49
run: |
50
~/auto shipit -vv
0 commit comments