mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 23:48:01 -05:00
* Create dependabot.yml Copying from https://github.com/actions/runner/blob/main/.github/dependabot.yml * Lint and adjust reviewdog workflows to use non-deprecated fail_level option. Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com>
18 lines
372 B
YAML
18 lines
372 B
YAML
---
|
|
name: ShellCheck
|
|
on: workflow_call
|
|
jobs:
|
|
shellcheck:
|
|
runs-on: ubuntu-24.04
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: ShellCheck
|
|
uses: reviewdog/action-shellcheck@v1
|
|
with:
|
|
exclude: './tools/*'
|
|
fail_level: any
|
|
reporter: github-pr-check
|