Compare commits

...

14 Commits

Author SHA1 Message Date
Barion
1b9c2a6094
Merge branch 'github:main' into main 2026-03-01 11:16:29 +01:00
Tim Hunter
b4105e73e4
Merge pull request #4707 from stone-w4tch3r/patch-1
Add .pnpm-store to Node.gitignore
2026-02-12 09:50:51 -08:00
Daniel Johnson
53fee13f20
Merge pull request #4790 from github/bump-stale-close-time
Extend stale PR closure period to 365 days
2026-01-23 13:57:13 -08:00
Daniel Johnson
01714f2f2d
Update stale PR messages and inactivity duration comments 2026-01-23 13:27:06 -08:00
Daniel Johnson
e07ecef472
Extend stale PR closure period to 365 days
Updated the days before closing stale PRs from 180 to 365. Due to internal priorities we need to allow more time for PR reviews.

Based on my reading, we need to increase `days-before-close` to ensure that any PR marked with the `stale` label currently benefits from the extension.

Once we are caught up on the backlog, we can revisit this setting.
2026-01-23 13:24:58 -08:00
Tim Hunter
96a44720e8
Merge pull request #4752 from moezgwall/improve-cpp-gitignore
Improve C++.gitignore
2026-01-13 13:40:39 -08:00
Tim Hunter
86922aee42
Merge pull request #4747 from mikekistler/patch-1
Add .env to gitignore for dotenv files
2025-11-17 10:23:12 -08:00
Tim Hunter
003ac16f8a
Merge pull request #4746 from yutamago/feature/jetbrains-copilot-migration-files
Ignore GitHub Copilot migration files in Jetbrains IDEs
2025-11-13 11:15:10 -08:00
Mike Kistler
f0d151001c
Apply suggestion from @thorrsson 2025-11-10 13:26:09 -08:00
Mike Kistler
7ecf2d3e79
Apply suggestion from @thorrsson 2025-11-07 14:02:24 -08:00
moez chroufa
63c110e757 Improve C++.gitignore 2025-11-04 01:11:48 +01:00
Mike Kistler
ed85cd93b0
Add .env to gitignore for dotenv files 2025-10-19 11:24:35 -07:00
Angelo
a19adfd688
Ignore GitHub Copilot migration files
Add GitHub Copilot session migration files to .gitignore
2025-10-17 11:29:23 +02:00
Данил Б
b238aa7039
Add .pnpm-store to Node.gitignore 2025-08-12 03:11:59 +05:00
5 changed files with 41 additions and 4 deletions

View File

@ -21,10 +21,10 @@ jobs:
steps: steps:
- uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9.1.0 - uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9.1.0
with: with:
stale-pr-message: 'This PR is stale because there have been no updates in 90 days. It will close after 180 days of inactivity. Leave a comment if you want to keep it open :smile:' stale-pr-message: 'This PR is stale because there have been no updates in 90 days. It will close after 365 days of inactivity. Leave a comment if you want to keep it open.'
close-pr-message: 'This PR has been closed because it was inactive for 180 days. If you want to continue working on it, please open a new PR.' close-pr-message: 'This PR has been closed because it was inactive for 365 days. If you want to continue working on it, please open a new PR.'
days-before-stale: 90 days-before-stale: 90
days-before-close: 180 days-before-close: 365
stale-pr-label: 'stale' stale-pr-label: 'stale'
exempt-pr-labels: 'keep' exempt-pr-labels: 'keep'
close-issue-reason: not_planned close-issue-reason: not_planned

View File

@ -21,6 +21,8 @@
*.so *.so
*.dylib *.dylib
*.dll *.dll
*.so.*
# Fortran module files # Fortran module files
*.mod *.mod
@ -37,5 +39,31 @@
*.out *.out
*.app *.app
# Build directories
build/
Build/
build-*/
# CMake generated files
CMakeFiles/
CMakeCache.txt
cmake_install.cmake
Makefile
install_manifest.txt
compile_commands.json
# Temporary files
*.tmp
*.log
*.bak
*.swp
# vcpkg
vcpkg_installed/
# debug information files # debug information files
*.dwo *.dwo
# test output & cache
Testing/
.cache/

View File

@ -36,6 +36,9 @@ ScaffoldingReadMe.txt
# NuGet Symbol Packages # NuGet Symbol Packages
*.snupkg *.snupkg
# dotenv environment variables file
.env
# Others # Others
~$* ~$*
*~ *~
@ -51,4 +54,4 @@ CodeCoverage/
# NUnit # NUnit
*.VisualState.xml *.VisualState.xml
TestResult.xml TestResult.xml
nunit-*.xml nunit-*.xml

View File

@ -81,3 +81,6 @@ http-client.private.env.json
# Apifox Helper cache # Apifox Helper cache
.idea/.cache/.Apifox_Helper .idea/.cache/.Apifox_Helper
.idea/ApifoxUploaderProjectSetting.xml .idea/ApifoxUploaderProjectSetting.xml
# Github Copilot persisted session migrations, see: https://github.com/microsoft/copilot-intellij-feedback/issues/712#issuecomment-3322062215
.idea/**/copilot.data.migration.*.xml

View File

@ -126,6 +126,9 @@ dist
# Stores VSCode versions used for testing VSCode extensions # Stores VSCode versions used for testing VSCode extensions
.vscode-test .vscode-test
# pnpm
.pnpm-store
# yarn v3 # yarn v3
.pnp.* .pnp.*
.yarn/* .yarn/*