From d50d4653c6ca758214161b37a1af1e6b27cdb1d2 Mon Sep 17 00:00:00 2001 From: wirednkod Date: Wed, 20 Dec 2023 17:56:33 +0200 Subject: [PATCH 1/3] Fix links --- src/pages/Funding/index.mdx | 23 +++++++++++++++++++---- src/pages/Welcome/index.mdx | 13 +++++++++++-- 2 files changed, 30 insertions(+), 6 deletions(-) diff --git a/src/pages/Funding/index.mdx b/src/pages/Funding/index.mdx index bb6ac46..64b8ec7 100644 --- a/src/pages/Funding/index.mdx +++ b/src/pages/Funding/index.mdx @@ -7,15 +7,30 @@ import pba3 from "./PBA3.png" Polkadot provides multiple avenues for getting your project or initiative funded. There are obviously also Venture Capital based routes to pursue but below are Polkadot specific options to explore. -### [Treasury Proposal](https://polkadot.polkassembly.io/opengov) +

+ + Treasury Proposal + +

-You can apply for Decentralized, community-driven funding for Polkadot [projects](https://twitter.com/polk_gov/status/1732378861755871495). For more information about how to apply and what projects qualify click [here](https://polkadot.network/ecosystem/treasury/). +You can apply for Decentralized, community-driven funding for Polkadot [projects](https://twitter.com/polk_gov/status/1732378861755871495). For more information about how to apply and what projects qualify click here. -### [Web3 Foundation Grant](https://grants.web3.foundation/) +

+ + Web3 Foundation Grant + +

As part of our commitment to promoting the Web3 ecosystem, the Web3 Foundation offers a comprehensive grants program focused on funding software development and research efforts related to Polkadot and Kusama. -### [Events bounty](https://web3foundation.notion.site/Community-Events-Bounty-3dc41e32c4f64dc5bee5ad60c3a22432) +

+ + Events bounty + +

The organization of events in person or online promotes and supports the Polkadot and Kusama brand. These meetups are necessary to create awareness of the brand, create local communities and above all educate about the technology and ecosystem. This bounty aims to reward and fund events hosted by community members in the Polkadot and Kusama ecosystem. diff --git a/src/pages/Welcome/index.mdx b/src/pages/Welcome/index.mdx index ff845d9..8eeb71c 100644 --- a/src/pages/Welcome/index.mdx +++ b/src/pages/Welcome/index.mdx @@ -22,9 +22,18 @@ Follow us on social media channels, and tag us whenever appropriate.

From 5af740260daa8178fac39931fdbcb2c3bbbbe43b Mon Sep 17 00:00:00 2001 From: wirednkod Date: Wed, 20 Dec 2023 18:03:38 +0200 Subject: [PATCH 2/3] more fixes --- .github/workflows/auto-merge.yml | 17 +++++++++++++++++ .github/workflows/gh-publish.yml | 23 +++++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 .github/workflows/auto-merge.yml create mode 100644 .github/workflows/gh-publish.yml diff --git a/.github/workflows/auto-merge.yml b/.github/workflows/auto-merge.yml new file mode 100644 index 0000000..f03a21c --- /dev/null +++ b/.github/workflows/auto-merge.yml @@ -0,0 +1,17 @@ +name: Dependabot Auto Merge + +on: pull_request + +permissions: + contents: write + pull-requests: write + +jobs: + auto-merge: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: ahmadnassri/action-dependabot-auto-merge@v2 + with: + target: minor + github-token: ${{ secrets.AUTOMERGE_TOKEN }} diff --git a/.github/workflows/gh-publish.yml b/.github/workflows/gh-publish.yml new file mode 100644 index 0000000..b0110b8 --- /dev/null +++ b/.github/workflows/gh-publish.yml @@ -0,0 +1,23 @@ +name: GitHub Pages Publish + +on: + push: + branches: [main] + +jobs: + gh-deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 18 + registry-url: https://registry.npmjs.org + - run: yarn install + - name: Build + working-directory: "." + run: yarn build:pages + - name: Deploy + uses: JamesIves/github-pages-deploy-action@v4 + with: + folder: build From 948347c89a8b87257da15ce321058008623a04ad Mon Sep 17 00:00:00 2001 From: wirednkod Date: Wed, 20 Dec 2023 18:05:50 +0200 Subject: [PATCH 3/3] more fixes --- .github/workflows/ci.yml | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a6df12e..f75b4a7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,22 +7,6 @@ on: branches: [main] jobs: - check-license-lines: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@master - - name: Check License Lines - uses: kt3k/license_checker@v1.0.6 - validate-locales: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Use Node.js 18.x - uses: actions/setup-node@v4 - with: - node-version: 18.x - # TODO: Disable locale:validation for now - # - run: yarn run locale:validate build: runs-on: ubuntu-latest strategy: @@ -41,7 +25,7 @@ jobs: all: # This job ensures that all jobs above (now we have just build) are successful. - needs: [check-license-lines, build, validate-locales] + needs: [build] runs-on: ubuntu-latest steps: - run: echo Success