AO3-6810 Don't send "Automatically flagged as spam" email when hiding works manually #1348
Workflow file for this run
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
# Based on https://github.com/tk0miya/action-erblint/blob/main/README.md#example-usage | |
name: Reviewdog | |
on: [pull_request] | |
permissions: | |
checks: write | |
jobs: | |
rubocop: | |
name: Rubocop | |
runs-on: ubuntu-latest | |
env: | |
BUNDLE_ONLY: linters | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Set up Ruby and run bundle install | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: rubocop | |
uses: reviewdog/action-rubocop@5e23bb67d79c93e5eb45bdae6d08b04052afec35 | |
with: | |
use_bundler: true | |
reporter: github-pr-check | |
skip_install: true | |
fail_on_error: true | |
erb-lint: | |
name: ERB Lint runner | |
runs-on: ubuntu-latest | |
env: | |
BUNDLE_ONLY: linters | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Set up Ruby and run bundle install | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: erb-lint | |
uses: tk0miya/action-erblint@b6e537f4616e4fa7a9eef209ca34ca944e1440dd | |
with: | |
use_bundler: true | |
reporter: github-pr-check | |
fail_on_error: true |