generate-crd-docs #22
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
--- | |
name: Generate CRD Reference Docs | |
on: | |
workflow_dispatch: # Allows manual trigger of the workflow | |
repository_dispatch: # Allows other repositories to trigger this workflow | |
types: [generate-crd-docs] | |
jobs: | |
trigger: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: read | |
steps: | |
- uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
aws-region: ${{ vars.RP_AWS_CRED_REGION }} | |
role-to-assume: arn:aws:iam::${{ secrets.RP_AWS_CRED_ACCOUNT_ID }}:role/${{ vars.RP_AWS_CRED_BASE_ROLE_NAME }}${{ github.event.repository.name }} | |
- uses: aws-actions/aws-secretsmanager-get-secrets@v2 | |
with: | |
secret-ids: | | |
,sdlc/prod/github/actions_bot_token | |
parse-json-secrets: true | |
# Checkout the specified branch from redpanda repository. | |
- name: Checkout redpanda repository | |
uses: actions/checkout@v4 | |
with: | |
repository: redpanda-data/redpanda-operator | |
ref: main | |
path: redpanda | |
token: ${{ env.ACTIONS_BOT_TOKEN }} | |
# Checkout the redpanda-docs repository based on the FORMATTED_BRANCH. | |
- name: Checkout this repository | |
uses: actions/checkout@v4 | |
with: | |
ref: main | |
repository: redpanda-data/docs | |
path: redpanda-docs | |
token: ${{ env.ACTIONS_BOT_TOKEN }} | |
# Download crd-ref-docs utility for doc generation. | |
- name: Download crd-ref-docs | |
run: | | |
curl -fLO https://github.com/elastic/crd-ref-docs/releases/download/v0.1.0/crd-ref-docs | |
chmod +x crd-ref-docs | |
sudo mv crd-ref-docs /usr/local/bin/ | |
# Generate Operator CRD documentation. | |
- name: Generate Operator CRD Docs | |
run: | | |
crd-ref-docs \ | |
--source-path=./redpanda/operator/api/redpanda/v1alpha2 \ | |
--max-depth=10 \ | |
--templates-dir=./redpanda-docs/.github/crd-config/templates/asciidoctor/operator \ | |
--config=./redpanda-docs/.github/crd-config/config.yaml \ | |
--renderer=asciidoctor \ | |
--output-path=./redpanda-docs/modules/reference/pages/k-crd.adoc | |
# Check for any changes made in the documentation. | |
- name: Check if changes were made | |
id: check_changes | |
run: | | |
cd ./redpanda-docs | |
changes=$(git status --porcelain) | |
if [ -z "$changes" ]; then | |
echo "has_changes=false" >> $GITHUB_ENV | |
else | |
echo "has_changes=true" >> $GITHUB_ENV | |
fi | |
# If changes were detected, commit those changes. | |
- name: Commit changes | |
if: env.has_changes == 'true' | |
run: | | |
cd ./redpanda-docs | |
git config --global user.email "[email protected]" | |
git config --global user.name "vbotbuildovich" | |
git add . | |
git commit -m "auto-docs: Update CRD reference doc" | |
git push origin main | |
env: | |
ACCESS_TOKEN: ${{ env.ACTIONS_BOT_TOKEN }} |