chore(main): release 1.4.0 #24
Workflow file for this run
This file contains hidden or 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
| name: CI | |
| # Companion to ci.yml. When a pull request only touches documentation or other | |
| # path-ignored files, ci.yml is skipped entirely and its required | |
| # "Shellcheck + Unit Tests" check never reports — which blocks the PR from | |
| # merging. This workflow runs on exactly those ignored paths and emits a passing | |
| # check with the same job name, so the required status is always satisfied | |
| # without a manual bypass. | |
| on: | |
| pull_request: | |
| paths: | |
| - '**.md' | |
| - 'LICENSE' | |
| - '.github/FUNDING.yml' | |
| jobs: | |
| ci: | |
| name: Shellcheck + Unit Tests | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: No shell scripts changed | |
| run: echo "Documentation-only change; no shell scripts to lint." |