Skip to content

Commit 70483fd

Browse files
committed
build: update workflow to correctly generate changelogs
1 parent bae736f commit 70483fd

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

.github/workflows/standalone_keepalive.yml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,25 @@ jobs:
6868
# Specify whether to remove untracked files before checking out the repository:
6969
clean: false
7070

71-
# Limit clone depth to the most recent commit:
72-
fetch-depth: 1
71+
# Fetch all history to allow for changelog generation:
72+
fetch-depth: 0
7373

7474
# Specify whether to download Git-LFS files:
7575
lfs: false
7676
timeout-minutes: 10
7777

78+
# Configure Git:
79+
- name: 'Configure Git'
80+
run: |
81+
git config --local user.email "[email protected]"
82+
git config --local user.name "stdlib-bot"
83+
84+
# Apply Git notes:
85+
- name: 'Apply Git notes'
86+
run: |
87+
make apply-git-notes
88+
timeout-minutes: 5
89+
7890
# Install Node.js:
7991
- name: 'Install Node.js'
8092
# Pin action to full length commit SHA

0 commit comments

Comments
 (0)