Conversation
There was a problem hiding this comment.
Pull Request Overview
This PR refines GitHub Actions workflow trigger paths by making the path ignore patterns more specific. The key change is narrowing the ignore pattern from .github/** to .github/workflows/** to allow non-workflow GitHub configuration changes to trigger the workflows.
Key Changes:
- Updated
push-artifacts.yamlto ignore only.github/workflows/**instead of.github/** - Updated
build-check.yamlto add ignore patterns for.github/workflows/**andREADME.md
Reviewed Changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| .github/workflows/push-artifacts.yaml | Narrowed path ignore pattern from .github/** to .github/workflows/** |
| .github/workflows/build-check.yaml | Added ignore patterns for .github/workflows/** and README.md |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
| - scripts/** | ||
| - README.md | ||
| - .github/** | ||
| - .github/workflows/** |
There was a problem hiding this comment.
This ignore pattern will prevent the workflow from triggering when its own file is modified, but changes to this workflow file should typically trigger the workflow to validate the changes work correctly. Consider if this self-exclusion is intentional.
| - .github/workflows/** |
| types: [opened, synchronize] | ||
| paths-ignore: | ||
| - scripts/** | ||
| - .github/workflows/** |
There was a problem hiding this comment.
This ignore pattern will prevent the workflow from triggering when its own file is modified, but changes to this workflow file should typically trigger the workflow to validate the changes work correctly. Consider if this self-exclusion is intentional.
| - .github/workflows/** |
No description provided.