-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into user-identity-mapping-job
- Loading branch information
Showing
51 changed files
with
570 additions
and
559 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,44 @@ | ||
# Config can be validated before merging: curl -X POST --data-binary @.codecov.yaml https://codecov.io/validate | ||
codecov: | ||
max_report_age: "off" # see https://docs.codecov.io/docs/codecov-yaml#section-expired-reports | ||
|
||
# See http://docs.codecov.io/docs/coverage-configuration | ||
coverage: | ||
precision: 2 # 2 = xx.xx%, 0 = xx% | ||
round: down | ||
# For example: 20...60 would result in any coverage less than 20% | ||
# would have a red background. The color would gradually change to | ||
# green approaching 60%. Any coverage over 60% would result in a | ||
# solid green color. | ||
range: "20...60" | ||
|
||
# See https://docs.codecov.com/docs/commit-status | ||
status: | ||
# project will give us the diff in the total code coverage between a commit | ||
# and its parent | ||
project: | ||
default: | ||
# Allow the coverage to drop by 1%, and posting a success status. | ||
threshold: 1% | ||
# Patch gives just the coverage of the patch | ||
patch: yes | ||
# changes tells us if there are unexpected code coverage changes in other files | ||
# which were not changed by the diff | ||
changes: yes | ||
|
||
# See http://docs.codecov.io/docs/ignoring-paths | ||
ignore: | ||
- "github/*" | ||
- "cmd/*" | ||
- "make/*" | ||
- "resources/*" | ||
- "test-resources/*" | ||
|
||
# See https://docs.codecov.com/docs/pull-request-comments | ||
comment: | ||
layout: "header, diff, tree" | ||
# default = posts once then update, posts new if delete | ||
# once = post once then updates | ||
# new = delete old, post new | ||
# spammy = post new | ||
behavior: "new" |
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,46 @@ | ||
name: ci-build | ||
on: | ||
push: | ||
branches: | ||
- master | ||
tags-ignore: | ||
- '*.*' | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
golangci: | ||
name: GolangCI Lint | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Install Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: 1.20.x | ||
|
||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Lint | ||
uses: golangci/golangci-lint-action@v4 | ||
with: | ||
version: v1.56.2 | ||
skip-pkg-cache: true | ||
skip-build-cache: true | ||
args: --config=./.golangci.yml --verbose | ||
|
||
yammlint: | ||
name: YAML Lint | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install yamllint | ||
run: pip install yamllint | ||
|
||
- name: Lint YAML files | ||
run: yamllint -c .yamllint ./ |
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
Validating CODEOWNERS rules …
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 +1 @@ | ||
* @MatousJobanek @xcoulon @alexeykazakov @rajivnathan @ranakan19 @sbryzak @mfrancisc @drpaneas | ||
* @MatousJobanek @xcoulon @alexeykazakov @rajivnathan @ranakan19 @sbryzak @mfrancisc @drpaneas @metlos @fbm3307 |
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
Oops, something went wrong.