-
Notifications
You must be signed in to change notification settings - Fork 552
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat/ci-coverage
- Loading branch information
Showing
84 changed files
with
15,477 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: Docusaurus add version | ||
on: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
gen-docs-version: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Cache node_modules | ||
uses: actions/cache@v3 | ||
with: | ||
path: docs/node_modules | ||
key: node_modules-${{ hashFiles('**/yarn.lock') }} | ||
|
||
- name: Setup node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16.x | ||
cache: yarn | ||
cache-dependency-path: docs/yarn.lock | ||
|
||
- name: Install Dependencies | ||
run: yarn install | ||
working-directory: ./docs | ||
|
||
- name: Generate docusaurus docs for ${{ github.ref_name }} | ||
run: yarn run docusaurus docs:version ${{ github.ref_name }} | ||
working-directory: ./docs | ||
|
||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@v4 | ||
with: | ||
title: 'chore: docusaurus deploy version ${{ github.ref_name }}' | ||
commit-message: 'chore(docs): deploy version ${{ github.ref_name }}' | ||
body: '' | ||
base: main | ||
branch: chore/docs/new-version | ||
add-paths: | | ||
docs/ |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
sidebar_position: 8 | ||
description: Ignite CLI bounty program incentives and rewards. | ||
--- | ||
|
||
# Bounty program | ||
|
||
Our Ignite CLI bounty program provides incentives for your participation and pays rewards. If you know Golang, follow the bounty issues, write code, close issues, and get rewarded. | ||
|
||
Do your bounty hunting in our repo. Track new, in-progress, and completed bounties on the [Bounty board](https://github.com/ignite/cli/projects/5) in GitHub. | ||
|
||
For details on the Ignite CLI bounty program, join the #bounty channel in [Ignite Discord](https://discord.com/invite/ignite). | ||
|
||
New bounties are posted and claimed in Discord on the #bounty announcement channel. |
Oops, something went wrong.