Skip to content

Fix workflow?

Fix workflow? #1

Workflow file for this run

on:
push:
branches:
- main
generate_doc:
needs:
- validate
name: Generate the documentation from the JSON Schemas
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-20.04"]
permissions:
contents: write
steps:

Check failure on line 17 in .github/workflows/merge-actions.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/merge-actions.yaml

Invalid workflow file

You have an error in your yaml syntax on line 17
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Extract branch name
shell: bash
run: echo "branch=${GITHUB_REF#refs/heads/}" >> $GITHUB_OUTPUT
id: extract_branch
# - name: Create new branch
# run: |
# git fetch
# git checkout merge/${{ github.run_id }}
- name: Install json-schema-for-humans
run: pip install json-schema-for-humans
- name: Create documentation directory
run: mkdir -p _docs
- name: Generate the documentation
run: |
generate-schema-doc --config template_name=md_nested ./.schema/controller.json ./_docs/controller.md
generate-schema-doc --config template_name=md_nested ./.schema/manufacturer.json ./_docs/manufacturer.md
generate-schema-doc --config template_name=md_nested ./.schema/category.json ./_docs/category.md
# - name: Commit files
# run: |
# git config --local user.email "action@github.com"
# git config --local user.name "GitHub Action"
# git add *
# if ! git diff-index --quiet HEAD; then
# git commit -m "Update documentation" -a
# fi
# - name: push changes
# uses: ad-m/github-push-action@master
# with:
# github_token: ${{ secrets.GITHUB_TOKEN }}
# branch: merge/${{ github.run_id }}
- name: Create Pull Request
id: cpr
uses: peter-evans/create-pull-request@v6
with:
commit-message: |
Update documentation
branch: merge/${{ github.run_id }}
- Name: Merge Pull Request
uses: peter-evans/enable-pull-request-automerge@v3
with:
token: ${{ secrets.PAT }}
pull-request-number: ${{ steps.cpr.outputs.pull-request-number }}