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
84 changes: 0 additions & 84 deletions .dockerignore

This file was deleted.

2 changes: 2 additions & 0 deletions .github/workflows/build-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
pull_request:
branches: [main]
types: [opened, synchronize]
paths-ignore:
- scripts/**
Copy link

Copilot AI Oct 12, 2025

Choose a reason for hiding this comment

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

Similar to the push-artifacts workflow, this excludes 'scripts/**' but the removed deploy.sh was in the root directory. Verify this path pattern matches your actual scripts location.

Suggested change
- scripts/**
- scripts/**
- '*.sh'

Copilot uses AI. Check for mistakes.
jobs:
check-build-success:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/push-artifacts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
push:
branches:
- main
paths-ignore:
- scripts/**
Copy link

Copilot AI Oct 12, 2025

Choose a reason for hiding this comment

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

The paths-ignore filter excludes 'scripts/**' but the deploy.sh script being removed was in the root directory, not in a scripts folder. Consider whether this filter correctly matches your intended directory structure.

Suggested change
- scripts/**
- scripts/**
- *.sh

Copilot uses AI. Check for mistakes.
- README.md
jobs:
push-artifacts-to-s3:
runs-on: ubuntu-latest
Expand Down
271 changes: 0 additions & 271 deletions deploy.sh

This file was deleted.