From 7fe715d3e39f069f7cc9657c2b8639221521ced5 Mon Sep 17 00:00:00 2001 From: Stephan Hageboeck Date: Fri, 26 Jun 2026 11:35:40 +0200 Subject: [PATCH] [ci] Move doxygen job for master into the common schedule file. --- .github/workflows/root-docs-master.yml | 25 ------------------------ .github/workflows/root-docs-schedule.yml | 7 ++++++- 2 files changed, 6 insertions(+), 26 deletions(-) delete mode 100644 .github/workflows/root-docs-master.yml diff --git a/.github/workflows/root-docs-master.yml b/.github/workflows/root-docs-master.yml deleted file mode 100644 index a087bd8142282..0000000000000 --- a/.github/workflows/root-docs-master.yml +++ /dev/null @@ -1,25 +0,0 @@ - -name: 'ROOT Docs Main' - -on: - schedule: - - cron: '0 1 * * *' - - cron: '0 12 * * *' - - workflow_dispatch: - inputs: - incremental: - description: 'Do full build' - type: boolean - required: false - default: false - # docu_input: # opportunity: overwrite makeinput.sh with these args - # description: Folders to build documentation for. All folders are built if empty. - # type: string - # default: "" - # required: false - -jobs: - run_nightlies: - uses: root-project/root/.github/workflows/root-docs-ci.yml@master - secrets: inherit diff --git a/.github/workflows/root-docs-schedule.yml b/.github/workflows/root-docs-schedule.yml index 07cddd710d64a..b9b2a71a4419c 100644 --- a/.github/workflows/root-docs-schedule.yml +++ b/.github/workflows/root-docs-schedule.yml @@ -3,7 +3,7 @@ name: 'ROOT Docs Nightlies' on: schedule: - cron: '20 1 * * *' - - cron: '20 12 * * 1-5' + - cron: '55 11 * * 1-5' jobs: Docs_6-32: @@ -20,3 +20,8 @@ jobs: if: ${{ github.event.schedule == '20 1 * * *' }} uses: root-project/root/.github/workflows/root-docs-ci.yml@v6-40-00-patches secrets: inherit + + # Master also runs at lunch time during the week + Docs_Master: + uses: root-project/root/.github/workflows/root-docs-ci.yml@master + secrets: inherit