Skip to content

ci: support releases with branch-protection #36

ci: support releases with branch-protection

ci: support releases with branch-protection #36

Workflow file for this run

---
# This workflow sets the test / all status check to success in case it's a docs only PR and ci.yml is not triggered
# https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/troubleshooting-required-status-checks#handling-skipped-but-required-checks
name: ci # The name must be the same as ci.yml
on:
pull_request:
paths-ignore: # This expression needs to match the paths ignored on ci.yml.
- '**'
- '!**/*.md'
- '!**/*.asciidoc'
permissions:
contents: read
jobs:
all:
runs-on: ubuntu-latest
steps:
- run: 'echo "No build required"'