Builder API — Diagnostics #20
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
# This workflow gives a positive check result to PRs that only | |
# change non-code files. It is needed for branch protection to work. | |
name: CI (dummy) | |
on: | |
pull_request: | |
# Paths must be synchronized with ci.yml. | |
paths: | |
- '**/*.md' | |
- '**/*.txt' | |
permissions: read-all | |
jobs: | |
full_ci_passed: | |
runs-on: ubuntu-latest | |
steps: | |
- run: exit 0 |