Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions .github/workflows/build-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ on:
types: [opened, synchronize]
paths-ignore:
- scripts/**
- .github/workflows/**
Copy link

Copilot AI Oct 18, 2025

Choose a reason for hiding this comment

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

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.

Suggested change
- .github/workflows/**

Copilot uses AI. Check for mistakes.
- README.md
workflow_dispatch:
jobs:
check-build-success:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push-artifacts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
paths-ignore:
- scripts/**
- README.md
- .github/**
- .github/workflows/**
Copy link

Copilot AI Oct 18, 2025

Choose a reason for hiding this comment

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

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.

Suggested change
- .github/workflows/**

Copilot uses AI. Check for mistakes.
workflow_dispatch:
jobs:
push-artifacts-to-s3:
Expand Down