From b1bf92704d4ceae0960ec33b926e451721c419c1 Mon Sep 17 00:00:00 2001 From: "laysa.uchoa" Date: Wed, 27 Jul 2022 21:57:38 +0200 Subject: [PATCH] Every Tuesday run Adjust run linkcheck in all files every Tuesday, so if something breaks, we can fix it regarding the links. --- .github/workflows/linkcheck-changed-files.yaml | 2 +- .github/workflows/linkcheck.yaml | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/linkcheck-changed-files.yaml b/.github/workflows/linkcheck-changed-files.yaml index 4b8f138f35..0e7498edef 100644 --- a/.github/workflows/linkcheck-changed-files.yaml +++ b/.github/workflows/linkcheck-changed-files.yaml @@ -1,4 +1,4 @@ -name: LinkCheck - Changed files +name: "LinkCheck - Changed files" "on": push: branches: diff --git a/.github/workflows/linkcheck.yaml b/.github/workflows/linkcheck.yaml index 6d6431c673..e14af10b32 100644 --- a/.github/workflows/linkcheck.yaml +++ b/.github/workflows/linkcheck.yaml @@ -1,24 +1,24 @@ -name: LinkCheck - All files +name: "LinkCheck - All files" + on: schedule: - - cron: "0 17 * * 3" + - cron: "0 5 * * 2" jobs: - prose: + run-checks: runs-on: ubuntu-latest steps: - - name: Checkout - uses: actions/checkout@master - + - name: Checkout the repo + uses: actions/checkout@v2 + with: + fetch-depth: 0 - name: Set up Python uses: actions/setup-python@v2 with: python-version: 3.7 - - name: Install dependencies run: | python -m pip install --upgrade pip pip install -r requirements.txt - - name: LinkCheck run: make linkcheck