Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: registry ci update latest #44

Merged
merged 72 commits into from
Sep 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
72 commits
Select commit Hold shift + click to select a range
79413c6
test pr workflow
marshacb Sep 4, 2023
b4a7880
update on script
marshacb Sep 4, 2023
b119391
test action update
marshacb Sep 4, 2023
b10b6a6
update pr yml action update
marshacb Sep 4, 2023
d47e1ed
update allow removing to true
marshacb Sep 4, 2023
8b59bf2
update file path
marshacb Sep 4, 2023
c2b87cf
file path change
marshacb Sep 4, 2023
f5b97a2
test github workspace var
marshacb Sep 4, 2023
1bf59c4
test commit action
marshacb Sep 4, 2023
18c6d13
remove checkout master
marshacb Sep 4, 2023
5446d02
test registry build with json removed
marshacb Sep 4, 2023
1d1fc45
update pr yml
marshacb Sep 4, 2023
18e42a5
test auto commit action
marshacb Sep 4, 2023
9722205
update permissions
marshacb Sep 4, 2023
47e6608
remove local registry file
marshacb Sep 4, 2023
8ae51e6
remove add .
marshacb Sep 5, 2023
7a80096
add disable_globbing true, add file pattern for json
marshacb Sep 5, 2023
9328926
test file change
marshacb Sep 5, 2023
dc07ea4
update path
marshacb Sep 5, 2023
f5193b8
update registry ref
marshacb Sep 5, 2023
c750743
test auto commit
marshacb Sep 5, 2023
b94ffc8
test file changes
marshacb Sep 5, 2023
083de2f
test changes
marshacb Sep 5, 2023
dd57a75
Automated Registry Update
marshacb Sep 5, 2023
6cacb63
update MultiLocation to XcmV3MultiLocation to support GlobalConsenus …
marshacb Sep 5, 2023
2769379
test autoapproval
marshacb Sep 6, 2023
78cfec6
test auto approval
marshacb Sep 6, 2023
df1b661
separate approval action
marshacb Sep 6, 2023
5e842e8
update pull request target
marshacb Sep 6, 2023
2ad91d1
update workflow conditional
marshacb Sep 6, 2023
106136e
re-add auto approval conditional
marshacb Sep 6, 2023
4b48e2c
test scheduled run
marshacb Sep 7, 2023
3ef2bca
rem autoapproval yml
marshacb Sep 7, 2023
ec4e96b
test auto merge/release
marshacb Sep 7, 2023
c0bb3c2
merge test
marshacb Sep 7, 2023
fcbd031
merge testing
marshacb Sep 7, 2023
1408acb
update pr yml
marshacb Sep 7, 2023
661750d
test automerge change
marshacb Sep 7, 2023
5d8d86b
test labeler config
marshacb Sep 7, 2023
91ecf89
test add label
marshacb Sep 7, 2023
e6d669e
remove conditional from label
marshacb Sep 7, 2023
1f9b997
update permissions
marshacb Sep 7, 2023
545383e
test post merge release
marshacb Sep 7, 2023
f90e824
merge main
marshacb Sep 7, 2023
82013e4
merge main
marshacb Sep 7, 2023
e5646de
update release yml
marshacb Sep 8, 2023
4b31b10
update github actors
marshacb Sep 8, 2023
d4c2de1
merge main
marshacb Sep 8, 2023
3176c69
update pr yml to test githib release post merge
marshacb Sep 11, 2023
bbfbfd2
merge main
marshacb Sep 11, 2023
b4d1f9b
update relese ci
marshacb Sep 11, 2023
56ff911
update github release action
marshacb Sep 11, 2023
3c458bd
merge main
marshacb Sep 11, 2023
33b2bf0
log github event
marshacb Sep 11, 2023
c06f543
merge main
marshacb Sep 11, 2023
cb468ef
update release if conditional
marshacb Sep 11, 2023
ebd1774
test release only
marshacb Sep 11, 2023
d55af6f
merge main
marshacb Sep 11, 2023
1bf33a9
update release action
marshacb Sep 11, 2023
b1e1447
test without if conditional
marshacb Sep 11, 2023
623e3f4
test release tag
marshacb Sep 11, 2023
e6e05e0
update release action to ncipollo
marshacb Sep 11, 2023
15cce12
test workflow
marshacb Sep 11, 2023
1b4b35d
remove commit option from release
marshacb Sep 11, 2023
78ec44f
test updating latest release
marshacb Sep 11, 2023
d1a18bd
remove tag option
marshacb Sep 11, 2023
503803b
test latest release removal
marshacb Sep 11, 2023
1c4abac
test latest release removal
marshacb Sep 11, 2023
5e295d0
test latest release deletion
marshacb Sep 11, 2023
99d20c1
re add commit main
marshacb Sep 11, 2023
143abcf
test workflow with release deletion
marshacb Sep 11, 2023
297ab73
Automated Registry Update
marshacb Sep 11, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 17 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,17 +82,32 @@ jobs:
MERGE_RETRY_SLEEP: "10000"
MERGE_REQUIRED_APPROVALS: "0"

delete-latest:
permissions:
contents: write

name: "Remove Latest Release"
runs-on: "ubuntu-latest"
needs: automerge

steps:
- uses: dev-drprasad/[email protected] # PRERELEASE is v1.0 and can also be used to test and give us feedback
with:
tag_name: latest #(required) tag name to delete
github_token: ${{ secrets.GITHUB_TOKEN }} # (required) a GitHub token with write access to the repo that needs to be modified
delete_release: true #(optional) default: true

github-release:
permissions:
contents: write

name: "Github Release"
runs-on: "ubuntu-latest"
needs: automerge
needs: delete-latest

steps:
- uses: actions/checkout@v3
- uses: ncipollo/release-action@v1
with:
tag: "latest"
commit: "main"
commit: "main"
9 changes: 9 additions & 0 deletions registry.json
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,15 @@
"poolPairsInfo": {},
"specName": "ajuna"
},
"2052": {
"tokens": [
"KYL"
],
"assetsInfo": {},
"foreignAssetsInfo": {},
"poolPairsInfo": {},
"specName": "kylin"
},
"2056": {
"tokens": [
"AVT"
Expand Down