-
Notifications
You must be signed in to change notification settings - Fork 1
Update .gitignore #107
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update .gitignore #107
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -1,2 +1,187 @@ | ||||||||||||||||||||||
| # =============== Java ================= | ||||||||||||||||||||||
| # Compiled class file | ||||||||||||||||||||||
| *.class | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| # BlueJ files | ||||||||||||||||||||||
| *.ctxt | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| # Mobile Tools for Java (J2ME) | ||||||||||||||||||||||
| .mtj.tmp/ | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| # Package Files # | ||||||||||||||||||||||
| *.jar | ||||||||||||||||||||||
| !/stack/keycloak/plugins/*.jar | ||||||||||||||||||||||
| *.war | ||||||||||||||||||||||
| *.nar | ||||||||||||||||||||||
| *.ear | ||||||||||||||||||||||
| *.zip | ||||||||||||||||||||||
| *.tar.gz | ||||||||||||||||||||||
| *.rar | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml | ||||||||||||||||||||||
| hs_err_pid* | ||||||||||||||||||||||
| replay_pid* | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| # =============== Maven ================ | ||||||||||||||||||||||
| target/ | ||||||||||||||||||||||
| pom.xml.tag | ||||||||||||||||||||||
| pom.xml.releaseBackup | ||||||||||||||||||||||
| pom.xml.versionsBackup | ||||||||||||||||||||||
| pom.xml.next | ||||||||||||||||||||||
| release.properties | ||||||||||||||||||||||
| dependency-reduced-pom.xml | ||||||||||||||||||||||
| buildNumber.properties | ||||||||||||||||||||||
| .mvn/timing.properties | ||||||||||||||||||||||
| # https://github.com/takari/maven-wrapper#usage-without-binary-jar | ||||||||||||||||||||||
| .mvn/wrapper/maven-wrapper.jar | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| # ================ Node =============== | ||||||||||||||||||||||
| node_modules | ||||||||||||||||||||||
| dist/ | ||||||||||||||||||||||
| .vite | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
|
Comment on lines
+38
to
+42
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
For Node-based composite or JavaScript actions the compiled sources must be committed (GitHub Marketplace fetches them straight from the repo). Either: - dist/
+# Ignore dist only in sub-packages; keep top-level dist for the action
+/**/dist/
+!/dist/or remove the pattern entirely if the project is a pure actions repo. 📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||||||||||
| # Diagnostic reports (https://nodejs.org/api/report.html) | ||||||||||||||||||||||
| report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| # Runtime data | ||||||||||||||||||||||
| pids | ||||||||||||||||||||||
| *.pid | ||||||||||||||||||||||
| *.seed | ||||||||||||||||||||||
| *.pid.lock | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| # Directory for instrumented libs generated by jscoverage/JSCover | ||||||||||||||||||||||
| lib-cov | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| # Coverage directory used by tools like istanbul | ||||||||||||||||||||||
| coverage | ||||||||||||||||||||||
| *.lcov | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| # nyc test coverage | ||||||||||||||||||||||
| .nyc_output | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| # node-waf configuration | ||||||||||||||||||||||
| .lock-wscript | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| # Compiled binary addons (https://nodejs.org/api/addons.html) | ||||||||||||||||||||||
| build/Release | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| # Dependency directories | ||||||||||||||||||||||
| jspm_packages/ | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| # TypeScript v1 declaration files | ||||||||||||||||||||||
| typings/ | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| # TypeScript cache | ||||||||||||||||||||||
| *.tsbuildinfo | ||||||||||||||||||||||
| cache/ | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| # Optional npm cache directory | ||||||||||||||||||||||
| .npm | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| # Optional eslint cache | ||||||||||||||||||||||
| .eslintcache | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| # Optional REPL history | ||||||||||||||||||||||
| .node_repl_history | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| # Output of 'npm pack' | ||||||||||||||||||||||
| *.tgz | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| # Yarn Integrity file | ||||||||||||||||||||||
| .yarn-integrity | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| # parcel-bundler cache (https://parceljs.org/) | ||||||||||||||||||||||
| .cache | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| # Next.js build output | ||||||||||||||||||||||
| .next | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| # Nuxt.js build / generate output | ||||||||||||||||||||||
| .nuxt | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| # Gatsby files | ||||||||||||||||||||||
| .cache/ | ||||||||||||||||||||||
|
Comment on lines
+93
to
+103
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧹 Nitpick (assertive) Duplicate cache patterns – keep one Both -# Gatsby files
-.cache/🤖 Prompt for AI Agents |
||||||||||||||||||||||
|
|
||||||||||||||||||||||
| # vuepress build output | ||||||||||||||||||||||
| .vuepress/dist | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| # ================ Other ============= | ||||||||||||||||||||||
| # macOS | ||||||||||||||||||||||
| .DS_Store | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| # Environment files | ||||||||||||||||||||||
| .env.local | ||||||||||||||||||||||
| .env.*.local | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
|
Comment on lines
+112
to
+115
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion Secrets risk – Only the local variants are covered. The primary +# generic dotenv files
+.env
+.env.*📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||||||||||
| # Log files | ||||||||||||||||||||||
| *.log | ||||||||||||||||||||||
| npm-debug.log* | ||||||||||||||||||||||
| yarn-debug.log* | ||||||||||||||||||||||
| yarn-error.log* | ||||||||||||||||||||||
| pnpm-debug.log* | ||||||||||||||||||||||
| lerna-debug.log* | ||||||||||||||||||||||
| logs | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| # ============== IDE specific settings ================ | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| ### Eclipse | ||||||||||||||||||||||
| # Covers Eclipse, based on https://www.toptal.com/developers/gitignore/api/eclipse , stripped to relevant java based rules | ||||||||||||||||||||||
| .metadata | ||||||||||||||||||||||
| bin/ | ||||||||||||||||||||||
| tmp/ | ||||||||||||||||||||||
| *.tmp | ||||||||||||||||||||||
| *.bak | ||||||||||||||||||||||
| *.swp | ||||||||||||||||||||||
| *~.nib | ||||||||||||||||||||||
| local.properties | ||||||||||||||||||||||
| .settings/ | ||||||||||||||||||||||
| .classpath | ||||||||||||||||||||||
| .loadpath | ||||||||||||||||||||||
| .recommenders | ||||||||||||||||||||||
| .project | ||||||||||||||||||||||
| # External tool builders | ||||||||||||||||||||||
| .externalToolBuilders/ | ||||||||||||||||||||||
| # Locally stored "Eclipse launch configurations" | ||||||||||||||||||||||
| *.launch | ||||||||||||||||||||||
| # Java annotation processor (APT) | ||||||||||||||||||||||
| .factorypath | ||||||||||||||||||||||
| # STS (Spring Tool Suite) | ||||||||||||||||||||||
| .springBeans | ||||||||||||||||||||||
| # Code Recommenders | ||||||||||||||||||||||
| .recommenders/ | ||||||||||||||||||||||
| # Annotation Processing | ||||||||||||||||||||||
| .apt_generated/ | ||||||||||||||||||||||
| .apt_generated_test/ | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| # Spring Boot Tooling | ||||||||||||||||||||||
| .sts4-cache/ | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| # PMD Plugin | ||||||||||||||||||||||
| .pmd | ||||||||||||||||||||||
| .ruleset | ||||||||||||||||||||||
| ### End of Eclipse | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm | ||||||||||||||||||||||
| .idea | ||||||||||||||||||||||
| tmp | ||||||||||||||||||||||
| *.iml | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| # Covers Netbeans: | ||||||||||||||||||||||
| **/nbproject/private/ | ||||||||||||||||||||||
| **/nbproject/Makefile-*.mk | ||||||||||||||||||||||
| **/nbproject/Package-*.bash | ||||||||||||||||||||||
| nbbuild/ | ||||||||||||||||||||||
| nbdist/ | ||||||||||||||||||||||
| .nb-gradle/ | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| # Covers VSCode | ||||||||||||||||||||||
| .vscode/* | ||||||||||||||||||||||
| !.vscode/tasks.json | ||||||||||||||||||||||
| *.code-workspace | ||||||||||||||||||||||
| .history/ | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| # Covers other editors | ||||||||||||||||||||||
| *.suo | ||||||||||||||||||||||
| *.ntvs* | ||||||||||||||||||||||
| *.njsproj | ||||||||||||||||||||||
| *.sln | ||||||||||||||||||||||
| *.sw? | ||||||||||||||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧹 Nitpick (assertive)
Remove hard-coded Keycloak JAR exception
The repository-specific path
!/stack/keycloak/plugins/*.jarlooks like a relic from a different codebase.It silently whitelists binaries in an unrelated folder, adding noise and potential confusion.
Unless that directory really exists in this repo, drop the rule.
-!/stack/keycloak/plugins/*.jar📝 Committable suggestion
🤖 Prompt for AI Agents