File tree 3 files changed +12
-21
lines changed
3 files changed +12
-21
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,17 @@ name: Build changelog
3
3
4
4
on :
5
5
workflow_dispatch :
6
+ schedule :
7
+ # ┌───────────── minute (0 - 59)
8
+ # │ ┌───────────── hour (0 - 23)
9
+ # │ │ ┌───────────── day of the month (1 - 31)
10
+ # │ │ │ ┌───────────── month (1 - 12 or JAN-DEC)
11
+ # │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT)
12
+ # │ │ │ │ │
13
+ # │ │ │ │ │
14
+ # │ │ │ │ │
15
+ # * * * * *
16
+ - cron : ' 0 8 * * *'
6
17
7
18
jobs :
8
19
changelog :
Original file line number Diff line number Diff line change 8
8
- " docs/**"
9
9
- " mkdocs.yml"
10
10
- " examples/**"
11
+ - " CHANGELOG.md"
11
12
12
13
jobs :
13
- changelog :
14
- permissions :
15
- contents : write
16
- uses : ./.github/workflows/reusable_publish_changelog.yml
17
-
18
14
release-docs :
19
- needs : changelog
20
15
permissions :
21
16
contents : write
22
17
pages : write
23
18
uses : ./.github/workflows/reusable_publish_docs.yml
24
19
with :
25
20
version : develop
26
21
alias : stage
27
- # Maintenance: Only necessary in repo migration
28
- # - name: Create redirect from old docs
29
- # run: |
30
- # git checkout gh-pages
31
- # test -f 404.html && echo "Redirect already set" && exit 0
32
- # git checkout develop -- 404.html
33
- # git add 404.html
34
- # git commit -m "chore: set docs redirect" --no-verify
35
- # git push origin gh-pages -f
Original file line number Diff line number Diff line change 15
15
required : true
16
16
17
17
jobs :
18
- changelog :
19
- permissions :
20
- contents : write
21
- uses : ./.github/workflows/reusable_publish_changelog.yml
22
-
23
18
release-docs :
24
- needs : changelog
25
19
permissions :
26
20
contents : write
27
21
pages : write
You can’t perform that action at this time.
0 commit comments