File tree Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -68,13 +68,25 @@ jobs:
68
68
# Specify whether to remove untracked files before checking out the repository:
69
69
clean : false
70
70
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
73
73
74
74
# Specify whether to download Git-LFS files:
75
75
lfs : false
76
76
timeout-minutes : 10
77
77
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
+
78
90
# Install Node.js:
79
91
- name : ' Install Node.js'
80
92
# Pin action to full length commit SHA
You can’t perform that action at this time.
0 commit comments