From 0ed8f0875dd5366bf6a71506d6ec048546642737 Mon Sep 17 00:00:00 2001 From: Ryan Nowak Date: Thu, 31 Oct 2024 11:30:45 -0700 Subject: [PATCH] Add *.tgz to .gitignore (#8020) # Description Building a private Bicep extension for local testing will create a `.tgz` file. We shouldn't check these in. ## Type of change - This pull request is a minor refactor, code cleanup, test improvement, or other maintenance task and doesn't change the functionality of Radius (issue link optional). ## Contributor checklist Please verify that the PR meets the following requirements, where applicable: - [ ] An overview of proposed schema changes is included in a linked GitHub issue. - [ ] A design document PR is created in the [design-notes repository](https://github.com/radius-project/design-notes/), if new APIs are being introduced. - [ ] If applicable, design document has been reviewed and approved by Radius maintainers/approvers. - [ ] A PR for the [samples repository](https://github.com/radius-project/samples) is created, if existing samples are affected by the changes in this PR. - [ ] A PR for the [documentation repository](https://github.com/radius-project/docs) is created, if the changes in this PR affect the documentation or any user facing updates are made. - [ ] A PR for the [recipes repository](https://github.com/radius-project/recipes) is created, if existing recipes are affected by the changes in this PR. Signed-off-by: Ryan Nowak --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index de5d23cab4..b247a5d8ac 100644 --- a/.gitignore +++ b/.gitignore @@ -66,3 +66,6 @@ tmp-* # Auto-generated Bicep markdown files hack/bicep-types-radius/generated/**/*.md + +# Bicep extensions +*.tgz \ No newline at end of file