mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-07 22:54:11 -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>
22 lines
467 B
YAML
22 lines
467 B
YAML
---
|
|
name: Rubocop
|
|
on: workflow_call
|
|
jobs:
|
|
rubocop:
|
|
runs-on: ubuntu-24.04
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: ruby/setup-ruby@v1
|
|
with:
|
|
ruby-version: '3.3'
|
|
- name: Rubocop
|
|
uses: reviewdog/action-rubocop@v2
|
|
with:
|
|
fail_level: any
|
|
filter_mode: nofilter
|
|
only_changed: true
|
|
reporter: github-pr-check
|