Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@ on:
push:
branches:
- main
paths-ignore:
- "docs/**"
- "**/*.md"
pull_request:
paths-ignore:
- "docs/**"
- "**/*.md"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Keep build-input Markdown files in CI

If a pull request deletes THIRD_PARTY_NOTICES.md or renames it to another Markdown path without updating the project, every changed path matches this ignore rule, so CI is skipped. However, src/Captail/Captail.csproj:38-40 explicitly copies that file to the build output and publish directory; the missing source then breaks subsequent builds and releases, while the push to main is skipped as well. Exempt build-input Markdown files from the blanket ignore or narrow the filter to documentation-only Markdown.

Useful? React with 👍 / 👎.

workflow_dispatch:

permissions:
Expand Down
Loading