chore(gitignore): ignore screenshots PNG files#734
Open
nicomiguelino wants to merge 1 commit intomasterfrom
Open
chore(gitignore): ignore screenshots PNG files#734nicomiguelino wants to merge 1 commit intomasterfrom
nicomiguelino wants to merge 1 commit intomasterfrom
Conversation
- Add `screenshots/*.png` to project-level .gitignore - Add `screenshots/*.png` to edge app template .gitignore - Add `screenshots/*.png` to all edge apps that depend on edge-apps-library Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
PR Code Suggestions ✨No code suggestions found for the PR. |
PR Code Suggestions ✨No code suggestions found for the PR. |
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates gitignore rules to prevent temporary screenshot PNG artifacts (generated during bun run screenshots) from showing up as unstaged changes across edge apps and the edge app template.
Changes:
- Ignore
edge-apps/**/screenshots/*.pngat the repo root. - Add
screenshots/*.pngto the edge app template.gitignore. - Add
screenshots/*.pngto.gitignorefiles in edge apps that use the shared screenshot tooling.
Reviewed changes
Copilot reviewed 12 out of 13 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
.gitignore |
Globally ignores temporary screenshot PNGs under edge-apps/**/screenshots/. |
edge-apps/.bun-create/edge-app-template/.gitignore |
Ensures newly generated edge apps ignore screenshot PNG intermediates. |
edge-apps/welcome-app/.gitignore |
Ignores screenshot PNG intermediates in the app directory. |
edge-apps/weather/.gitignore |
Ignores screenshot PNG intermediates in the app directory. |
edge-apps/simple-timer/.gitignore |
Ignores screenshot PNG intermediates in the app directory. |
edge-apps/simple-message-app/.gitignore |
Ignores screenshot PNG intermediates in the app directory. |
edge-apps/qr-code/.gitignore |
Ignores screenshot PNG intermediates in the app directory. |
edge-apps/outlook-calendar/.gitignore |
Ignores screenshot PNG intermediates in the app directory. |
edge-apps/menu-board/.gitignore |
Ignores screenshot PNG intermediates in the app directory. |
edge-apps/grafana/.gitignore |
Ignores screenshot PNG intermediates in the app directory. |
edge-apps/google-calendar/.gitignore |
Ignores screenshot PNG intermediates in the app directory. |
edge-apps/clock/.gitignore |
Ignores screenshot PNG intermediates in the app directory. |
edge-apps/cap-alerting/.gitignore |
Ignores screenshot PNG intermediates in the app directory. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
salmanfarisvp
approved these changes
Mar 17, 2026
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Background
When
bun run screenshotsis running, the generated PNG files appear as unstaged changes ingit status. These files are temporary and will be removed once the command finishes execution, so they should not be tracked by Git.Summary
edge-apps/**/screenshots/*.pngto the project-level.gitignorescreenshots/*.pngto the edge app template and all edge apps that depend onedge-apps-library