-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into DO-2153-pr-artifacts
- Loading branch information
Showing
50 changed files
with
2,476 additions
and
646 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,77 @@ | ||
"C:cmd/lavad": | ||
- changed-files: | ||
- any-glob-to-any-file: "cmd/lavad/**/*" | ||
"C:cmd/lavap": | ||
- changed-files: | ||
- any-glob-to-any-file: "cmd/lavap/**/*" | ||
"C:cmd/lavavisor": | ||
- changed-files: | ||
- any-glob-to-any-file: "cmd/lavavisor/**/*" | ||
"C:cmd/common": | ||
- changed-files: | ||
- any-glob-to-any-file: "cmd/common/**/*" | ||
"C:protocol": | ||
- changed-files: | ||
- any-glob-to-any-file: "protocol/**/*" | ||
"Team:Consensus": | ||
- changed-files: | ||
- any-glob-to-any-file: "x/**/*" | ||
- any-glob-to-any-file: "app/**/*" | ||
"Team:Protocol": | ||
- changed-files: | ||
- any-glob-to-any-file: "protocol/**/*" | ||
- any-glob-to-any-file: "ecosystem/**/*" | ||
"C:x/conflict": | ||
- changed-files: | ||
- any-glob-to-any-file: "x/conflict/**/*" | ||
"C:x/downtime": | ||
- changed-files: | ||
- any-glob-to-any-file: "x/downtime/**/*" | ||
"C:x/dualstaking": | ||
- changed-files: | ||
- any-glob-to-any-file: "x/dualstaking/**/*" | ||
"C:x/epochstorage": | ||
- changed-files: | ||
- any-glob-to-any-file: "x/epochstorage/**/*" | ||
"C:x/fixationstore": | ||
- changed-files: | ||
- any-glob-to-any-file: "x/fixationstore/**/*" | ||
"C:x/pairing": | ||
- changed-files: | ||
- any-glob-to-any-file: "x/pairing/**/*" | ||
"C:x/plans": | ||
- changed-files: | ||
- any-glob-to-any-file: "x/plans/**/*" | ||
"C:x/projects": | ||
- changed-files: | ||
- any-glob-to-any-file: "x/projects/**/*" | ||
"C:x/protocol": | ||
- changed-files: | ||
- any-glob-to-any-file: "x/protocol/**/*" | ||
"C:x/rewards": | ||
- changed-files: | ||
- any-glob-to-any-file: "x/rewards/**/*" | ||
"C:x/spec": | ||
- changed-files: | ||
- any-glob-to-any-file: "x/spec/**/*" | ||
"C:x/subscription": | ||
- changed-files: | ||
- any-glob-to-any-file: "x/subscription/**/*" | ||
"C:x/timerstore": | ||
- changed-files: | ||
- any-glob-to-any-file: "x/timerstore/**/*" | ||
"Type: Build": | ||
- changed-files: | ||
- any-glob-to-any-file: "Makefile" | ||
- any-glob-to-any-file: "Dockerfile" | ||
- any-glob-to-any-file: "docker-compose.yml" | ||
- any-glob-to-any-file: "scripts/*" | ||
"Type: CI": | ||
- changed-files: | ||
- any-glob-to-any-file: ".github/**" | ||
"Type: Docs": | ||
- changed-files: | ||
- any-glob-to-any-file: "docs/**/*" | ||
"Type: Proto": | ||
- changed-files: | ||
- any-glob-to-any-file: "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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: "Lint PR" | ||
|
||
on: | ||
pull_request_target: | ||
types: | ||
- opened | ||
- edited | ||
- synchronize | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
main: | ||
permissions: | ||
pull-requests: write # for amannn/action-semantic-pull-request to analyze PRs | ||
statuses: write # for amannn/action-semantic-pull-request to mark status of analyzed PR | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: amannn/[email protected] | ||
id: lint_pr_title | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- uses: marocchino/sticky-pull-request-comment@v2 | ||
# When the previous steps fails, the workflow would stop. By adding this | ||
# condition you can continue the execution with the populated error message. | ||
if: always() && (steps.lint_pr_title.outputs.error_message != null) | ||
with: | ||
header: pr-title-lint-error | ||
message: | | ||
Hey there and thank you for opening this pull request! 👋🏼 | ||
We require pull request titles to follow the [Conventional Commits specification](https://www.conventionalcommits.org/en/v1.0.0/) and it looks like your proposed title needs to be adjusted. | ||
Details: | ||
``` | ||
${{ steps.lint_pr_title.outputs.error_message }} | ||
``` | ||
# Delete a previous comment when the issue has been resolved | ||
- if: ${{ steps.lint_pr_title.outputs.error_message == null }} | ||
uses: marocchino/sticky-pull-request-comment@v2 | ||
with: | ||
header: pr-title-lint-error | ||
delete: true |
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,19 @@ | ||
name: "Pull Request Labeler" | ||
|
||
on: | ||
- pull_request_target | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
labeler: | ||
permissions: | ||
contents: read # for actions/labeler to determine modified files | ||
pull-requests: write # for actions/labeler to add labels to PRs | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/labeler@v5 | ||
with: | ||
configuration-path: .github/pr_labeler.yml | ||
repo-token: "${{ secrets.GITHUB_TOKEN }}" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"messages": [ | ||
{ | ||
"@type": "/cosmos.slashing.v1beta1.MsgUpdateParams", | ||
"authority": "lava@10d07y265gmmuvt4z0w9aw880jnsr700jz6yq37", | ||
"params": { | ||
"signed_blocks_window": "3500", | ||
"min_signed_per_window": "0.500000000000000000", | ||
"downtime_jail_duration": "600s", | ||
"slash_fraction_double_sign": "0.050000000000000000", | ||
"slash_fraction_downtime": "0.005000000000000000" | ||
} | ||
} | ||
], | ||
"title": "change slashing params to boost security", | ||
"summary": "boost security by adding slashing, allow validators more time to recover by increasing the window", | ||
"deposit": "1ulava", | ||
"expedited": false | ||
} |
Oops, something went wrong.