We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d822be commit cd5b383Copy full SHA for cd5b383
1 file changed
.github/workflows/auto-docgen.yml
@@ -1,11 +1,10 @@
1
name: Auto Documentation Generation
2
3
on:
4
- pull_request:
5
- branches: [main]
6
- types: [closed]
7
- paths-ignore:
8
- - 'static/typedoc/typedoc.json'
+ schedule:
+ # '30 8' = 08:30 UTC | '*' = every day/month | '1' = Monday
+ - cron: '30 8 * * 1'
+ workflow_dispatch: # Allows you to trigger it manually via the Actions tab
9
10
# Added permissions to allow the bot to push code
11
permissions:
@@ -14,7 +13,6 @@ permissions:
14
13
jobs:
15
docgen:
16
runs-on: ubuntu-latest
17
- if: github.event.pull_request.merged == true
18
19
steps:
20
- name: Checkout code
0 commit comments