diff --git a/.github/workflows/markdown_equations.yml b/.github/workflows/markdown_equations.yml index edb7b3974dc..3c2ca340bad 100644 --- a/.github/workflows/markdown_equations.yml +++ b/.github/workflows/markdown_equations.yml @@ -21,14 +21,12 @@ name: markdown_equations # Workflow triggers: on: - pull_request_target: - branches: - - develop - types: - - closed - paths: - # List paths for which changes should trigger this workflow: - - 'lib/**/*.md' + schedule: + # Run the workflow once a day at 2:00 AM UTC: + - cron: '0 2 * * *' + + # Allow the workflow to be manually run: + workflow_dispatch: # Global permissions: permissions: diff --git a/.github/workflows/markdown_tocs.yml b/.github/workflows/markdown_tocs.yml index 53ef4f99aac..edc12616b5c 100644 --- a/.github/workflows/markdown_tocs.yml +++ b/.github/workflows/markdown_tocs.yml @@ -21,11 +21,9 @@ name: markdown_tocs # Workflow triggers: on: - pull_request_target: - branches: - - develop - types: - - closed + schedule: + # Run the workflow once a day at 2:00 AM UTC: + - cron: '0 2 * * *' # Allow the workflow to be manually run: workflow_dispatch: diff --git a/.github/workflows/namespace_declarations.yml b/.github/workflows/namespace_declarations.yml index 7dc09721b7c..e613858442d 100644 --- a/.github/workflows/namespace_declarations.yml +++ b/.github/workflows/namespace_declarations.yml @@ -21,14 +21,9 @@ name: namespace_declarations # Workflow triggers: on: - pull_request_target: - branches: - - develop - types: - - closed - paths: - # List paths for which changes should trigger this workflow: - - 'lib/**/types/index.d.ts' + schedule: + # Run the workflow once a day at 2:00 AM UTC: + - cron: '0 2 * * *' # Allow the workflow to be manually run: workflow_dispatch: diff --git a/.github/workflows/update_repl_docs.yml b/.github/workflows/update_repl_docs.yml index 4e98d962a8a..bac4decfa5a 100644 --- a/.github/workflows/update_repl_docs.yml +++ b/.github/workflows/update_repl_docs.yml @@ -21,18 +21,9 @@ name: update_repl_docs # Workflow triggers: on: - pull_request_target: - branches: - - develop - types: - - closed - paths: - # List paths for which changes should trigger this workflow: - - 'lib/**/namespace/lib/**' - - 'lib/**/docs/repl.txt' - - # List paths for which changes should *not* trigger this workflow: - - '!lib/**/_tools/**' + schedule: + # Run the workflow once a day at 2:00 AM UTC: + - cron: '0 2 * * *' # Allow the workflow to be manually run: workflow_dispatch: