-
Notifications
You must be signed in to change notification settings - Fork 267
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: replace main/master with 0.34.x in workflow. yml (#172)
* Added main/master with 0.34.x * Making generate .yml the same as in main * Update mock generation and mock files * Added enveloper peer * Fix evidence test * Fixed failing tests * super linter fix * Backporting linter refactorings from main * fix some superlinter errors * fixing linter errors * linter * Removed k8s * updated mocks * Fix yaml files * renamed workflow file to use main instead of master * Applied PR comments * Fixed linter errors
- Loading branch information
1 parent
a23beea
commit 6b02109
Showing
70 changed files
with
557 additions
and
1,273 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 |
---|---|---|
@@ -1,16 +1,16 @@ | ||
pullRequestOpened: | | ||
:wave: Thanks for creating a PR! | ||
:wave: Thanks for creating a PR! | ||
Before we can merge this PR, please make sure that all the following items have been | ||
Before we can merge this PR, please make sure that all the following items have been | ||
checked off. If any of the checklist items are not applicable, please leave them but | ||
write a little note why. | ||
write a little note why. | ||
- [ ] Wrote tests | ||
- [ ] Updated CHANGELOG_PENDING.md | ||
- [ ] Linked to Github issue with discussion and accepted design OR link to spec that describes this work. | ||
- [ ] Updated relevant documentation (`docs/`) and code comments | ||
- [ ] Re-reviewed `Files changed` in the Github PR explorer | ||
- [ ] Applied Appropriate Labels | ||
- [ ] Wrote tests | ||
- [ ] Updated CHANGELOG_PENDING.md | ||
- [ ] Linked to Github issue with discussion and accepted design OR link to spec that describes this work. | ||
- [ ] Updated relevant documentation (`docs/`) and code comments | ||
- [ ] Re-reviewed `Files changed` in the Github PR explorer | ||
- [ ] Applied Appropriate Labels | ||
Thank you for your contribution to Tendermint! :rocket: | ||
Thank you for your contribution to Tendermint! :rocket: |
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,15 @@ | ||
# markdownlint configuration for Super-Linter | ||
# - https://github.com/DavidAnson/markdownlint | ||
# - https://github.com/github/super-linter | ||
|
||
# Default state for all rules | ||
default: true | ||
|
||
# See https://github.com/DavidAnson/markdownlint#rules--aliases for rules | ||
MD007: {"indent": 4} | ||
MD013: false | ||
MD024: {siblings_only: true} | ||
MD025: false | ||
MD033: {no-inline-html: false} | ||
no-hard-tabs: false | ||
whitespace: 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
# Default rules for YAML linting from super-linter. | ||
# See: See https://yamllint.readthedocs.io/en/stable/rules.html | ||
extends: default | ||
rules: | ||
document-end: disable | ||
document-start: disable | ||
line-length: disable | ||
truthy: disable |
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
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -10,6 +10,7 @@ on: | |
branches: | ||
- main | ||
- release/** | ||
- v0.34.x | ||
|
||
jobs: | ||
govulncheck: | ||
|
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 |
---|---|---|
|
@@ -6,7 +6,8 @@ on: | |
pull_request: | ||
push: | ||
branches: | ||
- master | ||
- main | ||
- v0.34.x | ||
jobs: | ||
golangci: | ||
name: golangci-lint | ||
|
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 |
---|---|---|
|
@@ -17,8 +17,8 @@ jobs: | |
- uses: actions/checkout@v3 | ||
- uses: bufbuild/[email protected] | ||
with: | ||
github_token: ${{ secrets.BUF_GITHUB_API_TOKEN }} | ||
buf_api_token: ${{ secrets.BUF_API_TOKEN }} | ||
github_token: ${{ secrets.BUF_GITHUB_API_TOKEN }} | ||
buf_api_token: ${{ secrets.BUF_API_TOKEN }} | ||
- uses: bufbuild/buf-lint-action@v1 | ||
with: | ||
input: 'proto' |
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 |
---|---|---|
|
@@ -6,8 +6,9 @@ on: | |
pull_request: | ||
push: | ||
branches: | ||
- master | ||
- main | ||
- release/** | ||
- v0.34.x | ||
|
||
jobs: | ||
cleanup-runs: | ||
|
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,12 +1,12 @@ | ||
version: 1.0.{build} | ||
configuration: Release | ||
platform: | ||
- x64 | ||
- x86 | ||
- x64 | ||
- x86 | ||
clone_folder: c:\go\path\src\github.com\tendermint\tendermint | ||
before_build: | ||
- cmd: set GOPATH=%GOROOT%\path | ||
- cmd: set PATH=%GOPATH%\bin;%PATH% | ||
- cmd: set GOPATH=%GOROOT%\path | ||
- cmd: set PATH=%GOPATH%\bin;%PATH% | ||
build_script: | ||
- cmd: make test | ||
- cmd: make test | ||
test: off |
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 |
---|---|---|
|
@@ -63,6 +63,4 @@ networks: | |
ipam: | ||
driver: default | ||
config: | ||
- | ||
subnet: 192.167.10.0/16 | ||
|
||
- subnet: 192.167.10.0/16 |
Oops, something went wrong.