-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: gql where args (#298) * fix: gql where obj to gql string * fix: review comments * chore: pr title lint workflow (#293) --------- Co-authored-by: Ruslan Shakirov <[email protected]>
- Loading branch information
1 parent
ee18f23
commit 10776c2
Showing
4 changed files
with
46 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Pull Request Title Lint | ||
|
||
on: | ||
pull_request: | ||
types: [opened, reopened, synchronize, edited] | ||
|
||
jobs: | ||
pr-title-lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: seferov/[email protected] | ||
with: | ||
# taken from https://gist.github.com/marcojahn/482410b728c31b221b70ea6d2c433f0c | ||
title-regex: '^(build|chore|ci|docs|feat|fix|perf|refactor|revert|style|test){1}(\([\w\-\.]+\))?(!)?: ([\w ])+([\s\S]*)' | ||
# title-regex-flags (Optional) | ||
title-regex-flags: "g" | ||
# error-message (Optional) | ||
error-message: "Please follow conventional commit style: https://www.conventionalcommits.org/en/v1.0.0/" |
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 |
---|---|---|
|
@@ -203,3 +203,5 @@ typings/ | |
# End of https://www.gitignore.io/api/node,intellij+all,visualstudiocode | ||
.yarn | ||
.DS_Store | ||
|
||
nibiru/ |
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
10776c2
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.