Skip to content

Commit

Permalink
support boring-cyborg
Browse files Browse the repository at this point in the history
  • Loading branch information
Clivern committed Oct 3, 2021
1 parent b418211 commit 7b25281
Show file tree
Hide file tree
Showing 2 changed files with 93 additions and 1 deletion.
92 changes: 92 additions & 0 deletions .github/boring-cyborg.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
---
firstIssueWelcomeComment: "Thanks for opening your first issue here! Be sure to follow the issue template!"
firstPRMergeComment: "Awesome work, congrats on your first merged pull request!"
firstPRWelcomeComment: "Thanks for opening this pull request! Please check out our contributing guidelines."

labelPRBasedOnFilePath:
"🚧 CI":
- .github/workflows/*

"🚧 CSS":
- "**/*.css"

"🚧 Configuration":
- .github/*

"🚧 Dependencies":
- Dockerfile*
- composer.*
- package.json
- package-lock.json
- yarn.lock
- go.mod
- go.sum
- build.gradle
- Cargo.toml
- Cargo.lock
- Gemfile.lock
- Gemfile

"🚧 Docker":
- Dockerfile*
- .docker/**/*

"🚧 Documentation":
- README.md
- CONTRIBUTING.md

"🚧 Go":
- "**/*.go"

"🚧 Rust":
- "**/*.rs"

"🚧 Java":
- "**/*.java"

"🚧 Ruby":
- "**/*.rb"

"🚧 HTML":
- "**/*.htm"
- "**/*.html"

"🚧 Image":
- "**/*.gif"
- "**/*.jpg"
- "**/*.jpeg"
- "**/*.png"
- "**/*.webp"

"🚧 JSON":
- "**/*.json"

"🚧 JavaScript":
- "**/*.js"
- package.json
- package-lock.json
- yarn.lock

"🚧 MarkDown":
- "**/*.md"

"🚧 PHP":
- "**/*.php"
- composer.*

"🚧 Source":
- src/**/*

"🚧 TOML":
- "**/*.toml"

"🚧 Templates":
- "**/*.twig"
- "**/*.tpl"

"🚧 Tests":
- tests/**/*

"🚧 YAML":
- "**/*.yml"
- "**/*.yaml"
2 changes: 1 addition & 1 deletion core/controller/api_auth_data_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ func TestUnitApiAuthDataEndpoints(t *testing.T) {

g.Assert(err).Equal(nil)
g.Assert(rec.Code).Equal(http.StatusBadRequest)
g.Assert(strings.Contains(rec.Body.String(), "message=BadReques")).Equal(true)
g.Assert(strings.Contains(rec.Body.String(), "message=BadRequest")).Equal(true)
})
})

Expand Down

0 comments on commit 7b25281

Please sign in to comment.