This is an automated email from the ASF dual-hosted git repository.
gurwls223 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/spark.git
The following commit(s) were added to refs/heads/master by this push:
new 44a96b4a0932 [MINOR][INFRA] Add GitHub copilot
instructions/agents/prompts/skills to .gitignore
44a96b4a0932 is described below
commit 44a96b4a0932198f8780d1e335147ae57347b492
Author: Kent Yao <[email protected]>
AuthorDate: Wed Jan 14 08:14:11 2026 +0900
[MINOR][INFRA] Add GitHub copilot instructions/agents/prompts/skills to
.gitignore
### What changes were proposed in this pull request?
This PR adds GitHub Copilot-related directories to `.gitignore`:
- `.github/copilot-instructions.md`
- `.github/agents/`
- `.github/instructions/`
- `.github/prompts/`
- `.github/skills/`
### Why are the changes needed?
GitHub Copilot allows users to customize its behavior through instruction
files, prompts, agents, and skills stored in the `.github` directory. These
files are typically user-specific or workspace-specific configurations and
should not be committed to the repository.
### Does this PR introduce _any_ user-facing change?
No
### How was this patch tested?
N/A - gitignore changes only
### Was this patch authored or co-authored using generative AI tooling?
No
Closes #53781 from yaooqinn/minor.
Authored-by: Kent Yao <[email protected]>
Signed-off-by: Hyukjin Kwon <[email protected]>
---
.gitignore | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/.gitignore b/.gitignore
index bbf02496498c..43e475e46056 100644
--- a/.gitignore
+++ b/.gitignore
@@ -129,3 +129,10 @@
sql/api/src/main/antlr4/org/apache/spark/sql/catalyst/parser/gen/
tpcds-sf-1/
tpcds-sf-1-text/
tpcds-kit/
+
+# For GitHub Copilot
+.github/copilot-instructions.md
+.github/agents/
+.github/instructions/
+.github/prompts/
+.github/skills/
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]