File tree Expand file tree Collapse file tree 1 file changed +15
-3
lines changed
Expand file tree Collapse file tree 1 file changed +15
-3
lines changed Original file line number Diff line number Diff line change 11name : Rebuild changelog
22
33on :
4- # Once a week or on release published
4+ # manually
5+ workflow_dispatch :
6+
7+ # on release published
58 release :
69 types : [published]
10+
11+ # nightly
712 schedule :
8- - cron : " 0 3 * * 0 "
13+ - cron : " 0 3 * * * "
914
1015jobs :
1116 rebuild-changelog :
1419 steps :
1520 - uses : actions/checkout@v3
1621 with :
17- fetch-depth : 0
22+ # don't checkout a detached HEAD, is important to have a real base
23+ # branch when creating a PR
24+ ref : ${{ github.head_ref }}
25+
26+ # this is important so git log can pick up on
27+ # the whole history to generate the CHANGELOG
28+ fetch-depth : ' 0'
29+
1830 - name : Set up Git
1931 run : |
2032 git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
You can’t perform that action at this time.
0 commit comments