From 40ffb60e0fd9d41388f972e4e732af5954eb3ef6 Mon Sep 17 00:00:00 2001 From: waymobetta Date: Thu, 19 Oct 2023 13:48:59 -0700 Subject: [PATCH 1/3] feat: add .md link linter --- .github/workflows/markdown.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/markdown.yml diff --git a/.github/workflows/markdown.yml b/.github/workflows/markdown.yml new file mode 100644 index 0000000..5772e16 --- /dev/null +++ b/.github/workflows/markdown.yml @@ -0,0 +1,22 @@ +name: Markdown + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + # t Checks the status of hyperlinks in .md files + - name: Check links + uses: gaurav-nelson/github-action-markdown-link-check@v1 + with: + use-quiet-mode: 'yes' + use-verbose-mode: 'yes' + check-modified-files-only: 'yes' From 5fde90d3dac363071674d7aed87d11473572ab8b Mon Sep 17 00:00:00 2001 From: waymobetta Date: Thu, 19 Oct 2023 13:55:04 -0700 Subject: [PATCH 2/3] fix: broken link --- posts/2023-05-26_myg-april/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posts/2023-05-26_myg-april/README.md b/posts/2023-05-26_myg-april/README.md index f855595..ac6002e 100644 --- a/posts/2023-05-26_myg-april/README.md +++ b/posts/2023-05-26_myg-april/README.md @@ -64,7 +64,7 @@ Onbloc is one of the Gno.land ecosystem’s most active contributors, responsibl In another cool development, Onbloc has rolled out a new feature in Adena and Gnoscan to provide support for GRC20 tokens. To store and send tokens, you can open your Adena wallet, click on "Manage Tokens”, navigate to the Custom Token page, and see which GRC20 tokens are available on Gno Testnet 3, searching by the symbol or path. To research on or discover tokens, head over to the Tokens page on Gnoscan for a full list of GRC20 tokens. You can click on any token on the list for detailed information, such as the total supply, owner, or other available functions built into the token. The Account Details page has also been updated to display all tokens owned by each address. You can help by checking out [issue 764](https://github.com/gnolang/gno/pull/764), which discusses adding bigint to support a wide range of numbers and encoding binary, and [issue 816](https://github.com/gnolang/gno/pull/816), which highlights a small bug the team runs into when coding. -Onbloc has also created a new [token resource page on GitHub](http://github/onbloc/gnotokenresources) for anyone to share or upload resources associated with their Gno.land project. This will serve as a shared knowledge pool about any dApp on the platform. If you wanted to create a decentralized exchange, for example, you would need all the information about the tokens available on Gno.land, such as their images, symbols, descriptions, links to websites, etc. Now you can find this in one handy GitHub repository. If you’re a developer or builder who wants your logo or any other static data posted, be sure to submit a PR. +Onbloc has also created a new [token resource page on GitHub](http://github.com/onbloc/gnotokenresources) for anyone to share or upload resources associated with their Gno.land project. This will serve as a shared knowledge pool about any dApp on the platform. If you wanted to create a decentralized exchange, for example, you would need all the information about the tokens available on Gno.land, such as their images, symbols, descriptions, links to websites, etc. Now you can find this in one handy GitHub repository. If you’re a developer or builder who wants your logo or any other static data posted, be sure to submit a PR. And speaking of decentralized exchanges, Onbloc is also building Gnoswap, the first DEX to be powered by Gno.land, designed to simplify the concentrated liquidity experience and increase capital efficiency for traders. Its interface is built using TypeScript to be user-friendly, secure, and accessible for streamlining complex mechanisms such as price range configurations and staking as part of its core service. Contribute to its interface [here](https://github.com/gnoswap-labs/gnoswap-interface). From 2021dacc03dfa132d1e7be7c3743a985e3dc5c3e Mon Sep 17 00:00:00 2001 From: waymobetta Date: Thu, 19 Oct 2023 14:03:02 -0700 Subject: [PATCH 3/3] fix: remove action --- .github/workflows/markdown.yml | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 .github/workflows/markdown.yml diff --git a/.github/workflows/markdown.yml b/.github/workflows/markdown.yml deleted file mode 100644 index 5772e16..0000000 --- a/.github/workflows/markdown.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: Markdown - -on: - push: - branches: [ "main" ] - pull_request: - branches: [ "main" ] - -jobs: - - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - # t Checks the status of hyperlinks in .md files - - name: Check links - uses: gaurav-nelson/github-action-markdown-link-check@v1 - with: - use-quiet-mode: 'yes' - use-verbose-mode: 'yes' - check-modified-files-only: 'yes'