Add groups to dependabot.yml #76
Workflow file for this run
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
# Use this starter workflow to verify PRs that include a change to the docs | |
# The default setup runs against PRs targeting your default branch | |
# Default artifact retention is 7 days | |
name: "Verify PR" | |
on: | |
pull_request: | |
branches: | |
- main | |
- dev | |
jobs: | |
# note that the build job requires a build-verify script in package.json | |
# build-verify should build html with Antora, and output a .json log file | |
# eg 'antora playbook.yml --log-format=json --log-file ./build/log/log.json' | |
docs-build-for-pr: | |
uses: recrwplay/actions-demo/.github/workflows/reusable-docs-build.yml@main | |
with: | |
deploy-id: ${{ github.event.number }} | |
retain-artifacts: 14 | |
docs-verify-for-pr: | |
needs: docs-build-for-pr | |
uses: recrwplay/actions-demo/.github/workflows/reusable-docs-verify.yml@main | |
with: | |
failOnWarnings: true |