-
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.
Signed-off-by: Matthis Holleville <matthish29@gmail.com>
- Loading branch information
1 parent
bee8cea
commit dd1485f
Showing
2 changed files
with
108 additions
and
0 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,56 @@ | ||
name: Semantic PR Validation | ||
on: | ||
pull_request_target: | ||
types: | ||
- opened | ||
- edited | ||
- synchronize | ||
defaults: | ||
run: | ||
shell: bash | ||
jobs: | ||
validate: | ||
runs-on: ubuntu-22.04 | ||
permissions: | ||
contents: read # Needed for checking out the repository | ||
pull-requests: read # Needed for reading prs | ||
steps: | ||
- name: Validate Pull Request | ||
uses: amannn/action-semantic-pull-request@c3cd5d1ea3580753008872425915e343e351ab54 # v5.2.0 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
# Configure which types are allowed. | ||
# Default: https://github.com/commitizen/conventional-commit-types | ||
types: | | ||
feat | ||
fix | ||
build | ||
chore | ||
ci | ||
docs | ||
perf | ||
refactor | ||
revert | ||
style | ||
test | ||
deps | ||
scopes: | | ||
deps | ||
# Configure that a scope must always be provided. | ||
requireScope: false | ||
# When using "Squash and merge" on a PR with only one commit, GitHub | ||
# will suggest using that commit message instead of the PR title for the | ||
# merge commit, and it's easy to commit this by mistake. Enable this option | ||
# to also validate the commit message for one commit PRs. | ||
validateSingleCommit: true | ||
# Configure additional validation for the subject based on a regex. | ||
# This ensures the subject doesn't start with an uppercase character. | ||
subjectPattern: ^(?![A-Z]).+$ | ||
# If `subjectPattern` is configured, you can use this property to override | ||
# the default error message that is shown when the pattern doesn't match. | ||
# The variables `subject` and `title` can be used within the message. | ||
subjectPatternError: | | ||
The subject "{subject}" found in the pull request title "{title}" | ||
didn't match the configured pattern. Please ensure that the subject | ||
doesn't start with an uppercase character. |
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,52 @@ | ||
name: "PR checks" | ||
|
||
on: | ||
pull_request: | ||
|
||
permissions: | ||
contents: read | ||
|
||
env: | ||
GO_VERSION: 1.19.3 | ||
|
||
jobs: | ||
lint-protos: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Install the `buf` CLI | ||
- uses: bufbuild/buf-setup-action@v1 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
# Lint your Protobuf sources | ||
- uses: bufbuild/buf-lint-action@v1 | ||
with: | ||
input: protobuf | ||
|
||
buf-format: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Install the `buf` CLI | ||
- uses: bufbuild/buf-setup-action@v1 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
- name: Buf format check | ||
run: buf format -d --exit-code | ||
|
||
buf-breaking-changes: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Install the `buf` CLI | ||
- uses: bufbuild/buf-setup-action@v1 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
# Run breaking change detection against the last commit | ||
- uses: bufbuild/buf-breaking-action@v1 | ||
with: | ||
input: protobuf | ||
against: 'https://github.com/k8sgpt-ai/schemas.git#branch=main,ref=HEAD~1,subdir=protobuf' |