Skip to content

Commit 0356fa0

Browse files
authored
Merge branch 'github:main' into master
2 parents 18e38e6 + 622c031 commit 0356fa0

File tree

306 files changed

+7945
-1410
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

306 files changed

+7945
-1410
lines changed

.github/CODEOWNERS

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Order is important. The LAST matching pattern has the MOST precedence.
2+
# gitignore style patterns are used, not globs.
3+
# https://docs.github.com/articles/about-codeowners
4+
# https://git-scm.com/docs/gitignore
5+
6+
# Catch All - Defer to the gitignore maintainers
7+
* @github/gitignore-maintainers

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
### Reasons for making this change
2+
3+
_TODO_
4+
<!---
5+
Please provide some background for this change.
6+
--->
7+
8+
### Links to documentation supporting these rule changes
9+
10+
_TODO_
11+
12+
<!---
13+
Link to the project docs, any existing .gitignore files that project may have in it's own repo, etc
14+
--->
15+
16+
### If this is a new template
17+
18+
Link to application or project’s homepage: TODO
19+
20+
### Merge and Approval Steps
21+
- [ ] Confirm that you've read the [contribution guidelines](https://github.com/github/gitignore/tree/main?tab=readme-ov-file#contributing-guidelines) and ensured your PR aligns
22+
- [ ] Ensure CI is passing
23+
- [ ] Get a review and Approval from one of the maintainers

.github/workflows/stale.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Stale
2+
3+
# **What it does**: Close pull requests after no updates for 180 days.
4+
# **Why we have it**: This repository gets a lot of PRs, and the maintainers team is small.
5+
# This helps reduce the open PRs to ones that are most desired by the community.
6+
# **Who does it impact**: Contributors and maintainers of github/gitignore.
7+
8+
on:
9+
schedule:
10+
- cron: '20 16 * * *' # Run every day at 16:20 UTC / 8:20 PST
11+
12+
permissions:
13+
actions: write
14+
contents: write # only for delete-branch option
15+
issues: write
16+
pull-requests: write
17+
18+
jobs:
19+
stale:
20+
runs-on: ubuntu-latest
21+
steps:
22+
- uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9.1.0
23+
with:
24+
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:'
25+
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.'
26+
days-before-stale: 90
27+
days-before-close: 180
28+
stale-pr-label: 'stale'
29+
exempt-pr-labels: 'keep'
30+
close-issue-reason: not_planned
31+
ascending: true # Sort PRs by last updated date in ascending order
32+
operations-per-run: 300

AL.gitignore

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
### AL ###
2+
#Template for AL projects for Dynamics 365 Business Central
3+
#launch.json folder
4+
.vscode/
5+
#Cache folder
6+
.alcache/
7+
#Symbols folder
8+
.alpackages/
9+
#Snapshots folder
10+
.snapshots/
11+
#Testing Output folder
12+
.output/
13+
#Extension App-file
14+
*.app
15+
#Rapid Application Development File
16+
rad.json
17+
#Translation Base-file
18+
*.g.xlf
19+
#License-file
20+
*.flf
21+
#Test results file
22+
TestResults.xml

Actionscript.gitignore

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
11
# Build and Release Folders
2-
bin/
32
bin-debug/
43
bin-release/
4+
[Oo]bj/
5+
[Bb]in/
56

6-
# Project property files
7-
.actionScriptProperties
8-
.flexProperties
7+
# Other files and folders
98
.settings/
10-
.project
9+
10+
# Executables
11+
*.swf
12+
*.air
13+
*.ipa
14+
*.apk
15+
16+
# Project files, i.e. `.project`, `.actionScriptProperties` and `.flexProperties`
17+
# should NOT be excluded as they contain compiler settings and other important
18+
# information for Eclipse / Flash Builder.

Ada.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Object file
2+
*.o
3+
4+
# Ada Library Information
5+
*.ali

AdventureGameStudio.gitignore

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Built things
2+
_Debug/
3+
Compiled/
4+
5+
# AudioCache can be rebuilt from sources
6+
AudioCache/
7+
8+
# Lockfile
9+
_OpenInEditor.lock
10+
11+
# User settings
12+
Game.agf.user
13+
*.crm.user
14+
15+
# Backups
16+
Game.agf.bak
17+
backup_acsprset.spr
18+
19+
# Memory dumps
20+
*.dmp
21+
22+
# Temporary files
23+
# temporarily created during sprite or room background compression
24+
~aclzw.tmp
25+
# temporary, main game data, before getting packed into exe
26+
game28.dta
27+
# temporary build of the game before being moved to Compiled/ folder
28+
*.exe
29+
30+
# Log files
31+
warnings.log

Agda.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*.agdai
2+
MAlonzo/**

Android.gitignore

Lines changed: 29 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,34 @@
1-
# built application files
2-
*.apk
3-
*.ap_
1+
# Gradle files
2+
.gradle/
3+
build/
4+
5+
# Local configuration file (sdk path, etc)
6+
local.properties
47

5-
# files for the dex VM
6-
*.dex
8+
# Log/OS Files
9+
*.log
710

8-
# Java class files
9-
*.class
11+
# Android Studio generated files and folders
12+
captures/
13+
.externalNativeBuild/
14+
.cxx/
15+
*.aab
16+
*.apk
17+
output-metadata.json
1018

11-
# generated files
12-
bin/
13-
gen/
19+
# IntelliJ
20+
*.iml
21+
.idea/
22+
misc.xml
23+
deploymentTargetDropDown.xml
24+
render.experimental.xml
1425

15-
# Local configuration file (sdk path, etc)
16-
local.properties
26+
# Keystore files
27+
*.jks
28+
*.keystore
29+
30+
# Google Services (e.g. APIs or Firebase)
31+
google-services.json
1732

18-
# Eclipse project files
19-
.classpath
20-
.project
33+
# Android Profiling
34+
*.hprof

Angular.gitignore

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Angular specific
2+
/dist/
3+
/out-tsc/
4+
/tmp/
5+
/coverage/
6+
/e2e/test-output/
7+
/.angular/
8+
.angular/
9+
10+
# Node modules and dependency files
11+
/node_modules/
12+
/package-lock.json
13+
/yarn.lock
14+
15+
# Environment files
16+
/.env
17+
18+
# Angular CLI and build artefacts
19+
/.angular-cli.json
20+
/.ng/
21+
22+
# TypeScript cache
23+
*.tsbuildinfo
24+
25+
# Logs
26+
npm-debug.log*
27+
yarn-debug.log*
28+
yarn-error.log*

0 commit comments

Comments
 (0)