-
Notifications
You must be signed in to change notification settings - Fork 526
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master' into AO3-5860
- Loading branch information
Showing
557 changed files
with
18,921 additions
and
4,914 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
"Awaiting Review": | ||
- "**/*" | ||
- ".*" | ||
- ".*/**/*" | ||
- changed-files: | ||
- any-glob-to-any-file: "**/*" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
"Gem Updates": | ||
- "Gemfile" | ||
- "Gemfile.lock" | ||
- changed-files: | ||
- any-glob-to-any-file: ["Gemfile", "Gemfile.lock"] | ||
|
||
"Has Migrations": | ||
- "db/migrate/**/*" | ||
- changed-files: | ||
- any-glob-to-any-file: "db/migrate/**/*" | ||
|
||
"Scope: i18n Only": | ||
- all: | ||
- "config/locales/**/*" | ||
- changed-files: | ||
- any-glob-to-all-files: "config/locales/**/*" | ||
|
||
"Scope: Tests Only": | ||
- all: | ||
- "{factories,features,spec,test,.github}/**/*" | ||
- changed-files: | ||
- any-glob-to-all-files: "{factories,features,spec,test,.github}/**/*" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
# Label to be added when the PR is updated: | ||
"Coder Has Actioned Review": | ||
- "**/*" | ||
- ".*" | ||
- ".*/**/*" | ||
- changed-files: | ||
- any-glob-to-any-file: "**/*" | ||
|
||
# Label to be removed when the PR is updated: | ||
"Reviewed: Action Needed": [] | ||
# Condition is always false so the label is removed when the PR is updated: | ||
"Reviewed: Action Needed": | ||
- changed-files: | ||
- any-glob-to-any-file: "!**/*" |
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# 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@2c8048e3169487eccc1eed812daaa6e5275a809f | ||
with: | ||
use_bundler: true | ||
reporter: github-pr-check | ||
skip_install: 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@667687e73b44e7b7a710a1204b180f49f80ebb5e | ||
with: | ||
use_bundler: true | ||
reporter: github-pr-check # default |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
.idea | ||
stdout | ||
*~ | ||
.vscode/ | ||
# / | ||
/*.tmproj | ||
/sphinx | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,9 @@ | ||
# Available linter versions: | ||
# http://help.houndci.com/en/articles/2461415-supported-linters | ||
|
||
erblint: | ||
enabled: true | ||
config_file: .erb-lint.yml | ||
|
||
jshint: | ||
config_file: .jshintrc | ||
ignore_file: .jshintignore | ||
|
||
rubocop: | ||
version: 0.83.0 | ||
config_file: .rubocop.yml | ||
enabled: false |
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
Oops, something went wrong.