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