From c4f500c87fd3f6aae8a2bf2b0b0f9e0b99991977 Mon Sep 17 00:00:00 2001 From: SamyOubouaziz Date: Wed, 11 Dec 2024 13:53:27 +0100 Subject: [PATCH 01/16] feat(gen): test actions on schedule --- .github/workflows/link-check-schedule.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/link-check-schedule.yml diff --git a/.github/workflows/link-check-schedule.yml b/.github/workflows/link-check-schedule.yml new file mode 100644 index 0000000000..3949d6ae6d --- /dev/null +++ b/.github/workflows/link-check-schedule.yml @@ -0,0 +1,13 @@ +name: Check links on schedule + +on: + schedule: + - cron: "0 14 * * *" + + jobs: + linkcheck: + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Check links with linkcheck + uses: filiph/linkcheck@3.0.0 From a88fab765f2eff943dcecc9305780dec1779ea76 Mon Sep 17 00:00:00 2001 From: SamyOubouaziz Date: Wed, 11 Dec 2024 13:57:09 +0100 Subject: [PATCH 02/16] feat(gen): update --- .github/workflows/link-check-schedule.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/link-check-schedule.yml b/.github/workflows/link-check-schedule.yml index 3949d6ae6d..25ac6dc7ad 100644 --- a/.github/workflows/link-check-schedule.yml +++ b/.github/workflows/link-check-schedule.yml @@ -11,3 +11,5 @@ on: uses: actions/checkout@v4 - name: Check links with linkcheck uses: filiph/linkcheck@3.0.0 + with: + arguments: https://www.scaleway.com/en/docs/ From 22e943629d9e67a0dc76f1dae7a1db35fee022ab Mon Sep 17 00:00:00 2001 From: SamyOubouaziz Date: Wed, 11 Dec 2024 13:58:06 +0100 Subject: [PATCH 03/16] feat(gen): update --- .github/workflows/link-check-schedule.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/link-check-schedule.yml b/.github/workflows/link-check-schedule.yml index 25ac6dc7ad..9a37700a6b 100644 --- a/.github/workflows/link-check-schedule.yml +++ b/.github/workflows/link-check-schedule.yml @@ -4,12 +4,12 @@ on: schedule: - cron: "0 14 * * *" - jobs: - linkcheck: - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Check links with linkcheck - uses: filiph/linkcheck@3.0.0 - with: - arguments: https://www.scaleway.com/en/docs/ +jobs: + linkcheck: + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Check links with linkcheck + uses: filiph/linkcheck@3.0.0 + with: + arguments: https://www.scaleway.com/en/docs/ From 6806f6ea985515e21701fa15e05ac509c741b837 Mon Sep 17 00:00:00 2001 From: SamyOubouaziz Date: Wed, 11 Dec 2024 13:59:15 +0100 Subject: [PATCH 04/16] feat(gen): update --- .github/workflows/link-check-schedule.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/link-check-schedule.yml b/.github/workflows/link-check-schedule.yml index 9a37700a6b..0fa192b7b4 100644 --- a/.github/workflows/link-check-schedule.yml +++ b/.github/workflows/link-check-schedule.yml @@ -11,5 +11,5 @@ jobs: uses: actions/checkout@v4 - name: Check links with linkcheck uses: filiph/linkcheck@3.0.0 - with: - arguments: https://www.scaleway.com/en/docs/ + with: + arguments: https://www.scaleway.com/en/docs/ From f16451210010e42673903b9a9357219f171c8499 Mon Sep 17 00:00:00 2001 From: SamyOubouaziz Date: Wed, 11 Dec 2024 14:04:39 +0100 Subject: [PATCH 05/16] feat(gen): add on push trigger --- .github/workflows/link-check-schedule.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/link-check-schedule.yml b/.github/workflows/link-check-schedule.yml index 0fa192b7b4..2c71ee8200 100644 --- a/.github/workflows/link-check-schedule.yml +++ b/.github/workflows/link-check-schedule.yml @@ -3,6 +3,7 @@ name: Check links on schedule on: schedule: - cron: "0 14 * * *" + push: jobs: linkcheck: @@ -12,4 +13,4 @@ jobs: - name: Check links with linkcheck uses: filiph/linkcheck@3.0.0 with: - arguments: https://www.scaleway.com/en/docs/ + arguments: www.scaleway.com/en/docs/ From fa2e8dd33af265098c233c1ce147e903d07a57a9 Mon Sep 17 00:00:00 2001 From: SamyOubouaziz Date: Wed, 11 Dec 2024 14:09:30 +0100 Subject: [PATCH 06/16] feat(gen): add on push trigger --- .github/workflows/link-check-schedule.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/link-check-schedule.yml b/.github/workflows/link-check-schedule.yml index 2c71ee8200..71011873ff 100644 --- a/.github/workflows/link-check-schedule.yml +++ b/.github/workflows/link-check-schedule.yml @@ -3,8 +3,10 @@ name: Check links on schedule on: schedule: - cron: "0 14 * * *" + pull_request: push: + jobs: linkcheck: steps: From 133f4836e43cad59f3d45dde344469b0dbb48248 Mon Sep 17 00:00:00 2001 From: SamyOubouaziz Date: Wed, 11 Dec 2024 14:10:49 +0100 Subject: [PATCH 07/16] feat(gen): add runs on --- .github/workflows/link-check-schedule.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/link-check-schedule.yml b/.github/workflows/link-check-schedule.yml index 71011873ff..95af9f12f9 100644 --- a/.github/workflows/link-check-schedule.yml +++ b/.github/workflows/link-check-schedule.yml @@ -1,14 +1,13 @@ name: Check links on schedule on: - schedule: - - cron: "0 14 * * *" pull_request: push: jobs: linkcheck: + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 From 1411b8eeb0a8a53f8192df1899e32cf5ca5fdb63 Mon Sep 17 00:00:00 2001 From: SamyOubouaziz Date: Wed, 11 Dec 2024 14:19:06 +0100 Subject: [PATCH 08/16] feat(gen): add schedule --- .github/workflows/link-check-schedule.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/link-check-schedule.yml b/.github/workflows/link-check-schedule.yml index 95af9f12f9..e5bbe5b337 100644 --- a/.github/workflows/link-check-schedule.yml +++ b/.github/workflows/link-check-schedule.yml @@ -1,8 +1,10 @@ name: Check links on schedule on: - pull_request: - push: + schedule: + cron: "20 14 * * *" + # pull_request: + # push: jobs: From 8230da3e57c8c00b34dcd633a5f63a0c7ade533b Mon Sep 17 00:00:00 2001 From: SamyOubouaziz Date: Wed, 11 Dec 2024 14:19:36 +0100 Subject: [PATCH 09/16] feat(gen): add schedule --- .github/workflows/link-check-schedule.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/link-check-schedule.yml b/.github/workflows/link-check-schedule.yml index e5bbe5b337..781338ca29 100644 --- a/.github/workflows/link-check-schedule.yml +++ b/.github/workflows/link-check-schedule.yml @@ -2,7 +2,7 @@ name: Check links on schedule on: schedule: - cron: "20 14 * * *" + - cron: "20 14 * * *" # pull_request: # push: From f5fa15f38d56d7148f404fabe7f9b62966189d18 Mon Sep 17 00:00:00 2001 From: SamyOubouaziz Date: Wed, 11 Dec 2024 14:24:31 +0100 Subject: [PATCH 10/16] feat(gen): add schedule --- .github/workflows/link-check-schedule.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/link-check-schedule.yml b/.github/workflows/link-check-schedule.yml index 781338ca29..c8c7ade1e9 100644 --- a/.github/workflows/link-check-schedule.yml +++ b/.github/workflows/link-check-schedule.yml @@ -1,12 +1,10 @@ name: Check links on schedule - on: schedule: - - cron: "20 14 * * *" + - cron: "27 14 * * *" # pull_request: # push: - jobs: linkcheck: runs-on: ubuntu-latest From c39489da616e119828dcfe43effce87f7a4382d8 Mon Sep 17 00:00:00 2001 From: SamyOubouaziz Date: Wed, 11 Dec 2024 14:25:35 +0100 Subject: [PATCH 11/16] feat(gen): add schedule --- .github/workflows/link-check-schedule.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/link-check-schedule.yml b/.github/workflows/link-check-schedule.yml index c8c7ade1e9..4562e803aa 100644 --- a/.github/workflows/link-check-schedule.yml +++ b/.github/workflows/link-check-schedule.yml @@ -14,4 +14,4 @@ jobs: - name: Check links with linkcheck uses: filiph/linkcheck@3.0.0 with: - arguments: www.scaleway.com/en/docs/ + arguments: https://www.scaleway.com/en/docs/ From 27eebcd276ade470a4f72f2fdccacfd291e129ba Mon Sep 17 00:00:00 2001 From: SamyOubouaziz Date: Wed, 11 Dec 2024 14:32:18 +0100 Subject: [PATCH 12/16] feat(gen): test --- .github/workflows/link-check-schedule.yml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/link-check-schedule.yml b/.github/workflows/link-check-schedule.yml index 4562e803aa..f5447e6c84 100644 --- a/.github/workflows/link-check-schedule.yml +++ b/.github/workflows/link-check-schedule.yml @@ -1,17 +1,12 @@ name: Check links on schedule on: schedule: - - cron: "27 14 * * *" - # pull_request: - # push: - + - cron: "34 14 * * *" jobs: linkcheck: runs-on: ubuntu-latest steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Check links with linkcheck - uses: filiph/linkcheck@3.0.0 + - uses: actions/checkout@v4 + - uses: filiph/linkcheck@3.0.0 with: arguments: https://www.scaleway.com/en/docs/ From fe0a099946b1e78ab061dee825ee0aafb48ec07f Mon Sep 17 00:00:00 2001 From: SamyOubouaziz Date: Wed, 11 Dec 2024 14:37:07 +0100 Subject: [PATCH 13/16] feat(gen): test with push --- .github/workflows/link-check-schedule.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/link-check-schedule.yml b/.github/workflows/link-check-schedule.yml index f5447e6c84..80d28dfff1 100644 --- a/.github/workflows/link-check-schedule.yml +++ b/.github/workflows/link-check-schedule.yml @@ -2,6 +2,7 @@ name: Check links on schedule on: schedule: - cron: "34 14 * * *" + push: jobs: linkcheck: runs-on: ubuntu-latest From be224b4c0a9d0b14059654e813711a6f2fe6d2fd Mon Sep 17 00:00:00 2001 From: SamyOubouaziz Date: Wed, 11 Dec 2024 14:44:26 +0100 Subject: [PATCH 14/16] feat(gen): remove push --- .github/workflows/link-check-schedule.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/link-check-schedule.yml b/.github/workflows/link-check-schedule.yml index 80d28dfff1..6d3783725c 100644 --- a/.github/workflows/link-check-schedule.yml +++ b/.github/workflows/link-check-schedule.yml @@ -1,8 +1,7 @@ name: Check links on schedule on: schedule: - - cron: "34 14 * * *" - push: + - cron: "0 9 * * 1" # Runs every Monday at 09:00 AM jobs: linkcheck: runs-on: ubuntu-latest From 43a49f4eba38e05799fb8f08d4cd3f986385a1b3 Mon Sep 17 00:00:00 2001 From: SamyOubouaziz Date: Wed, 11 Dec 2024 15:03:47 +0100 Subject: [PATCH 15/16] feat(gen): add test --- .github/workflows/link-check-schedule.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/link-check-schedule.yml b/.github/workflows/link-check-schedule.yml index 6d3783725c..6f9ee69b80 100644 --- a/.github/workflows/link-check-schedule.yml +++ b/.github/workflows/link-check-schedule.yml @@ -1,7 +1,7 @@ name: Check links on schedule on: schedule: - - cron: "0 9 * * 1" # Runs every Monday at 09:00 AM + - cron: "0 17 * * 0" # Runs every Monday at 09:00 AM jobs: linkcheck: runs-on: ubuntu-latest From 03ce33e9b4cc3d0858e679076245871f8489893e Mon Sep 17 00:00:00 2001 From: SamyOubouaziz Date: Wed, 11 Dec 2024 15:08:28 +0100 Subject: [PATCH 16/16] feat(gen): add test --- .github/workflows/link-check-schedule.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/link-check-schedule.yml b/.github/workflows/link-check-schedule.yml index 6f9ee69b80..cc6ca57d52 100644 --- a/.github/workflows/link-check-schedule.yml +++ b/.github/workflows/link-check-schedule.yml @@ -1,7 +1,7 @@ name: Check links on schedule on: schedule: - - cron: "0 17 * * 0" # Runs every Monday at 09:00 AM + - cron: "30 15 * * *" # Runs every Monday at 09:00 AM jobs: linkcheck: runs-on: ubuntu-latest