From 66cdb16513f4bb2833859c3aa52d2f2a4318b6a8 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Mon, 19 Dec 2022 23:16:27 +0100 Subject: [PATCH] Update weekly-superlinter.yml --- .github/workflows/weekly-superlinter.yml | 25 +++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/.github/workflows/weekly-superlinter.yml b/.github/workflows/weekly-superlinter.yml index 2547ba808..64b17c4c4 100644 --- a/.github/workflows/weekly-superlinter.yml +++ b/.github/workflows/weekly-superlinter.yml @@ -13,6 +13,30 @@ on: workflow_dispatch: jobs: +# yamllint disable rule:line-length +--- +name: Generate weekly stats +on: + schedule: + - cron: "0 12 * * 5" + workflow_dispatch: + +jobs: + make_executable: + runs-on: ubuntu-20.04 + steps: + - name: Checkout Repo + uses: actions/checkout@v3 + - name: Make scripts executable + run: | + echo "Starting" + find . -type f -iname "*.sh" -exec chmod +x {} \; + - name: Commit if needed + uses: EndBug/add-and-commit@v9 + with: + message: "GitHub bot : scripts executable" + default_author: github_actions + run-lint: runs-on: ubuntu-latest steps: @@ -37,7 +61,6 @@ jobs: VALIDATE_NATURAL_LANGUAGE: false ACTION_ACTIONLINT_DISABLE_ERRORS: true - check_crlf: name: Check CRLF action runs-on: ubuntu-latest