Some checks are pending
Docs Deploy / build_and_deploy (push) Waiting to run
Generate Docs / cli (push) Waiting to run
Generate Config Doc / cli (push) Waiting to run
Go formatting / go-formatting (push) Waiting to run
Check links / markdown-link-check (push) Waiting to run
Integration / pre-test (push) Waiting to run
Integration / test on (push) Blocked by required conditions
Integration / status (push) Blocked by required conditions
Lint / Lint Go code (push) Waiting to run
Test / test (ubuntu-latest) (push) Waiting to run
38 lines
915 B
YAML
38 lines
915 B
YAML
name: Generate Config Doc
|
|
on:
|
|
push:
|
|
paths:
|
|
- "ignite/config/chain/base/*"
|
|
- "ignite/config/chain/v*"
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
cli:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/setup-go@v5
|
|
with:
|
|
go-version: 'stable'
|
|
|
|
- name: Generate Config Doc
|
|
run: ./scripts/gen-config-doc
|
|
|
|
- name: Create Pull Request
|
|
id: cpr
|
|
uses: peter-evans/create-pull-request@v7
|
|
with:
|
|
title: "docs(config): update config doc"
|
|
commit-message: "docs(config): update config doc"
|
|
body: ""
|
|
branch: feat/gen-config-doc
|
|
add-paths: |
|
|
docs/
|
|
|
|
- name: Check outputs
|
|
run: |
|
|
echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}"
|
|
echo "Pull Request URL - ${{ steps.cpr.outputs.pull-request-url }}"
|
|
|