Let's say I have a pull request like this.
name: Workflow
on:
pull_request:
paths:
- '**/*.h'
- '**/*.c'
I protect the master branch by configuring GitHub Actions to require the status check to pass before the pull request is mergable.
Now I update a readme doc. I open a pull request against master. The pull request is unmergable because the status check never returns a success nor does it return a fail.
Suggestions?