-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
KaoImin
committed
Dec 21, 2023
1 parent
9a51527
commit 17bf12f
Showing
43 changed files
with
1,009 additions
and
1,004 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 |
---|---|---|
|
@@ -24,4 +24,3 @@ body: | |
value: "Describe the problem details:" | ||
validations: | ||
required: 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 |
---|---|---|
|
@@ -24,5 +24,3 @@ body: | |
value: "Describe the problem details:" | ||
validations: | ||
required: 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
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,38 +1,50 @@ | ||
underlying: | ||
- any: ['core/consensus/src/*', 'core/mempool/src/*', 'core/executor/src/*', 'core/network/src/*', 'core/storage/src/*'] | ||
- any: | ||
[ | ||
"core/consensus/src/*", | ||
"core/mempool/src/*", | ||
"core/executor/src/*", | ||
"core/network/src/*", | ||
"core/storage/src/*", | ||
] | ||
|
||
API: | ||
- core/api/src/* | ||
- core/api/src/* | ||
|
||
interoperation: | ||
- core/interoperation/src/* | ||
- core/interoperation/src/* | ||
|
||
crosschain: | ||
- any: ['core/cross-client/src/*', 'core/tx-assembler/src/*'] | ||
- any: ["core/cross-client/src/*", "core/tx-assembler/src/*"] | ||
|
||
devtools: | ||
- devtools/* | ||
- devtools/* | ||
|
||
documents: | ||
- any: ['docs/*', README.md, CHANGELOG.md] | ||
- any: ["docs/*", README.md, CHANGELOG.md] | ||
|
||
e2e: | ||
- tests/e2e/src/* | ||
- tests/e2e/src/* | ||
|
||
contract: | ||
- builtin-contract/* | ||
- builtin-contract/* | ||
|
||
protocol: | ||
- protocol/src/* | ||
- protocol/src/* | ||
|
||
toolchain: | ||
- rust-toolchain | ||
- rust-toolchain | ||
|
||
ci: | ||
- any: ['.github/actions/*', '.github/workflows/*'] | ||
- any: [".github/actions/*", ".github/workflows/*"] | ||
|
||
apm: | ||
- any: ['common/apm/src/*', 'common/apm-derive/src/*', 'common/memory-tracker/src/*'] | ||
- any: | ||
[ | ||
"common/apm/src/*", | ||
"common/apm-derive/src/*", | ||
"common/memory-tracker/src/*", | ||
] | ||
|
||
config: | ||
- any: ['common/config-parser/src/*'] | ||
- any: ["common/config-parser/src/*"] |
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,41 +1,41 @@ | ||
name-template: 'v$RESOLVED_VERSION-alpha.1' | ||
tag-template: 'v$RESOLVED_VERSION-alpha.1' | ||
name-template: "v$RESOLVED_VERSION-alpha.1" | ||
tag-template: "v$RESOLVED_VERSION-alpha.1" | ||
template: | | ||
# What's Changed | ||
$CHANGES | ||
**Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...v$RESOLVED_VERSION | ||
categories: | ||
- title: '🚀 Features' | ||
label: 'feature' | ||
- title: '🔥 Enhancement' | ||
label: 'enhancement' | ||
- title: '🐛 Bug Fixes' | ||
label: 'bugfix' | ||
- title: '🐝 refactor' | ||
label: 'refactor' | ||
- title: '🧰 Chore' | ||
label: 'chore' | ||
- title: '📖 Documentation' | ||
label: 'document' | ||
- title: '✨ Other changes' | ||
- title: '⬆️ Dependency Updates' | ||
label: 'dependencies' | ||
- title: '🌈 Style' | ||
label: 'style' | ||
- title: "🚀 Features" | ||
label: "feature" | ||
- title: "🔥 Enhancement" | ||
label: "enhancement" | ||
- title: "🐛 Bug Fixes" | ||
label: "bugfix" | ||
- title: "🐝 refactor" | ||
label: "refactor" | ||
- title: "🧰 Chore" | ||
label: "chore" | ||
- title: "📖 Documentation" | ||
label: "document" | ||
- title: "✨ Other changes" | ||
- title: "⬆️ Dependency Updates" | ||
label: "dependencies" | ||
- title: "🌈 Style" | ||
label: "style" | ||
|
||
version-resolver: | ||
minor: | ||
labels: | ||
- 'feature' | ||
- "feature" | ||
patch: | ||
labels: | ||
- 'bug' | ||
- 'maintenance' | ||
- 'docs' | ||
- 'dependencies' | ||
- 'security' | ||
- "bug" | ||
- "maintenance" | ||
- "docs" | ||
- "dependencies" | ||
- "security" | ||
|
||
exclude-labels: | ||
- 'skip-changelog' | ||
- "skip-changelog" |
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.