Skip to content

test using action

test using action #27

on:

Check failure on line 1 in .github/workflows/build_and_commit_docs.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build_and_commit_docs.yml

Invalid workflow file

(Line: 25, Col: 15): Expected format {org}/{repo}[/path]@ref. Actual '.github/actions/build_documentation.yml'
push:
branches: ['main']
workflow_dispatch: {}
name: Build and commit documentation
permissions:
contents: write
pull-requests: write
jobs:
build-docs:
# prevent subsequent commits from triggering the job multiple times
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v5
- name: "Build documentation"
uses: .github/actions/build_documentation.yml
- name: Open Pull Request
uses: peter-evans/create-pull-request@v6
with:
title: 'docs: generate docs from latest main [skip-ci]'
delete-branch: true