Shellcheck weekly #37
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright (C) 2024 Savoir-faire Linux, Inc. | |
# SPDX-License-Identifier: Apache-2.0 | |
# This file will execute shellcheck on the main branch every saturday | |
# This ensure the main branch is always linted properly | |
# A badge is derived from this workflow | |
name: Shellcheck weekly | |
on: | |
schedule: | |
- cron: '30 22 * * 6' | |
workflow_dispatch: | |
workflow_call: | |
permissions: | |
checks: write | |
jobs: | |
call-workflow: | |
uses: ./.github/workflows/shellcheck.yml |