forked from neo-project/neo-devpack-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
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 expression-comment
* master: [Framework Add] predefine manifest (neo-project#903) TestEngine: Get instruction coverage and move to net standard (neo-project#898) remove disable PublishToGithub (neo-project#901) Added `publish` to `github packages` and fix submodules (neo-project#899) bug: Fix default value when Stored (neo-project#895) Modify changelog during release (neo-project#900) Fixed `PackageReference` for `neo` (neo-project#897) cancel optimization on exception fix catch new Testing environment (neo-project#890) Updated submodule neo (neo-project#892) Update and fix Nep17 template (neo-project#891)
- Loading branch information
Showing
58 changed files
with
4,483 additions
and
102 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
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,27 @@ | ||
name: Nuget Package Cleanup (github) | ||
|
||
on: | ||
schedule: | ||
- cron: '0 0 * * *' # Run every day at 24:00 | ||
|
||
jobs: | ||
delete-pkgs: | ||
name: Delete Old Nuget Packages | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Delete Neo.SmartContract.Testing Package | ||
uses: actions/delete-package-versions@v4 | ||
with: | ||
package-name: Neo.SmartContract.Testing | ||
package-type: nuget | ||
min-versions-to-keep: 3 | ||
token: "${{ secrets.GITHUB_TOKEN }}" | ||
|
||
- name: Delete Neo.SmartContract.Framework Package | ||
uses: actions/delete-package-versions@v4 | ||
with: | ||
package-name: Neo.Neo.SmartContract.Framework | ||
package-type: nuget | ||
min-versions-to-keep: 3 | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
changelog: | ||
exclude: | ||
labels: | ||
- ignore-for-release | ||
authors: | ||
- octocat | ||
categories: | ||
- title: Breaking Changes 🛠 | ||
labels: | ||
- breaking-change | ||
- title: Exciting New Features 🎉 | ||
labels: | ||
- enhancement | ||
- title: What's Changed | ||
labels: | ||
- "*" |
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
Submodule neo
updated
3 files
+4 −0 | src/Neo/Neo.csproj | |
+55 −13 | src/Neo/SmartContract/KeyBuilder.cs | |
+3 −8 | tests/Neo.UnitTests/SmartContract/UT_KeyBuilder.cs |
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 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.