From 057ede85979f70506a683bace96122f1ea13636a Mon Sep 17 00:00:00 2001 From: Ronald William Mims II <151995075+Mimsii@users.noreply.github.com> Date: Sun, 30 Jun 2024 10:39:15 -0500 Subject: [PATCH 01/20] Create azure-webapps-node.yml Signed-off-by: Ronald William Mims II <151995075+Mimsii@users.noreply.github.com> --- .github/workflows/azure-webapps-node.yml | 78 ++++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 .github/workflows/azure-webapps-node.yml diff --git a/.github/workflows/azure-webapps-node.yml b/.github/workflows/azure-webapps-node.yml new file mode 100644 index 00000000..e7d47ef2 --- /dev/null +++ b/.github/workflows/azure-webapps-node.yml @@ -0,0 +1,78 @@ +# This workflow will build and push a node.js application to an Azure Web App when a commit is pushed to your default branch. +# +# This workflow assumes you have already created the target Azure App Service web app. +# For instructions see https://docs.microsoft.com/en-us/azure/app-service/quickstart-nodejs?tabs=linux&pivots=development-environment-cli +# +# To configure this workflow: +# +# 1. Download the Publish Profile for your Azure Web App. You can download this file from the Overview page of your Web App in the Azure Portal. +# For more information: https://docs.microsoft.com/en-us/azure/app-service/deploy-github-actions?tabs=applevel#generate-deployment-credentials +# +# 2. Create a secret in your repository named AZURE_WEBAPP_PUBLISH_PROFILE, paste the publish profile contents as the value of the secret. +# For instructions on obtaining the publish profile see: https://docs.microsoft.com/azure/app-service/deploy-github-actions#configure-the-github-secret +# +# 3. Change the value for the AZURE_WEBAPP_NAME. Optionally, change the AZURE_WEBAPP_PACKAGE_PATH and NODE_VERSION environment variables below. +# +# For more information on GitHub Actions for Azure: https://github.com/Azure/Actions +# For more information on the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy +# For more samples to get started with GitHub Action workflows to deploy to Azure: https://github.com/Azure/actions-workflow-samples + +on: + push: + branches: [ "main" ] + workflow_dispatch: + +env: + AZURE_WEBAPP_NAME: your-app-name # set this to your application's name + AZURE_WEBAPP_PACKAGE_PATH: '.' # set this to the path to your web app project, defaults to the repository root + NODE_VERSION: '14.x' # set this to the node version to use + +permissions: + contents: read + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Set up Node.js + uses: actions/setup-node@v3 + with: + node-version: ${{ env.NODE_VERSION }} + cache: 'npm' + + - name: npm install, build, and test + run: | + npm install + npm run build --if-present + npm run test --if-present + + - name: Upload artifact for deployment job + uses: actions/upload-artifact@v3 + with: + name: node-app + path: . + + deploy: + permissions: + contents: none + runs-on: ubuntu-latest + needs: build + environment: + name: 'Development' + url: ${{ steps.deploy-to-webapp.outputs.webapp-url }} + + steps: + - name: Download artifact from build job + uses: actions/download-artifact@v3 + with: + name: node-app + + - name: 'Deploy to Azure WebApp' + id: deploy-to-webapp + uses: azure/webapps-deploy@v2 + with: + app-name: ${{ env.AZURE_WEBAPP_NAME }} + publish-profile: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE }} + package: ${{ env.AZURE_WEBAPP_PACKAGE_PATH }} From c33b40c2c79c38a4d96591a3cddfa97dc68e1d50 Mon Sep 17 00:00:00 2001 From: Ronald William Mims II <151995075+Mimsii@users.noreply.github.com> Date: Sun, 30 Jun 2024 11:42:19 -0500 Subject: [PATCH 02/20] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3f4e6314..13867d56 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# .github +#mimsii .github *Community health files for the [@GitHub](https://github.com/github) organization* From 7b7b0cf803180cce6c54cbd06ebbd2fe7e21acbf Mon Sep 17 00:00:00 2001 From: Your Name <151995075+Mimsii@users.noreply.github.com> Date: Tue, 30 Jul 2024 00:52:28 -0500 Subject: [PATCH 03/20] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 13867d56..f248eece 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -#mimsii .github + *Community health files for the [@GitHub](https://github.com/github) organization* From 36479e83988d940546f2aacc8f94046f1cc467c3 Mon Sep 17 00:00:00 2001 From: Mimsii <151995075+Mimsii@users.noreply.github.com> Date: Fri, 6 Sep 2024 18:50:10 -0400 Subject: [PATCH 04/20] Update SECURITY.md Signed-off-by: Mimsii <151995075+Mimsii@users.noreply.github.com> --- SECURITY.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SECURITY.md b/SECURITY.md index d9a8762b..1d813206 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -12,7 +12,7 @@ If you believe you have found a security vulnerability in any GitHub-owned repos **Please do not report security vulnerabilities through public GitHub issues, discussions, or pull requests.** -Instead, please send an email to opensource-security[@]github.com. +Instead email to Rmims2@outlook.com Please include as much of the information listed below as you can to help us better understand and resolve the issue: From e53511685b237989eda460b348237736db97e9b6 Mon Sep 17 00:00:00 2001 From: Mimsii <151995075+Mimsii@users.noreply.github.com> Date: Sat, 7 Sep 2024 22:57:52 -0400 Subject: [PATCH 05/20] Update SECURITY.md Signed-off-by: Mimsii <151995075+Mimsii@users.noreply.github.com> --- SECURITY.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SECURITY.md b/SECURITY.md index 1d813206..73cae6a7 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -2,7 +2,7 @@ Thanks for helping make GitHub safe for everyone. ## Security -GitHub takes the security of our software products and services seriously, including all of the open source code repositories managed through our GitHub organizations, such as [GitHub](https://github.com/GitHub). +GitHub takes the security of our software products and services seriously, including all of the open source code repositories managed through our GitHub organizations, such as [GitHub](https://github.com). Even though [open source repositories are outside of the scope of our bug bounty program](https://bounty.github.com/index.html#scope) and therefore not eligible for bounty rewards, we will ensure that your finding gets passed along to the appropriate maintainers for remediation. From ecd2ed412b6caef0c89340de752f2d6e4d9134e8 Mon Sep 17 00:00:00 2001 From: Ronald William Mims II <151995075+Mimsii@users.noreply.github.com> Date: Thu, 19 Sep 2024 21:53:13 -0400 Subject: [PATCH 06/20] Update SECURITY.md Signed-off-by: Ronald William Mims II <151995075+Mimsii@users.noreply.github.com> --- SECURITY.md | 32 +------------------------------- 1 file changed, 1 insertion(+), 31 deletions(-) diff --git a/SECURITY.md b/SECURITY.md index 73cae6a7..ad056ee9 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -1,31 +1 @@ -Thanks for helping make GitHub safe for everyone. - -## Security - -GitHub takes the security of our software products and services seriously, including all of the open source code repositories managed through our GitHub organizations, such as [GitHub](https://github.com). - -Even though [open source repositories are outside of the scope of our bug bounty program](https://bounty.github.com/index.html#scope) and therefore not eligible for bounty rewards, we will ensure that your finding gets passed along to the appropriate maintainers for remediation. - -## Reporting Security Issues - -If you believe you have found a security vulnerability in any GitHub-owned repository, please report it to us through coordinated disclosure. - -**Please do not report security vulnerabilities through public GitHub issues, discussions, or pull requests.** - -Instead email to Rmims2@outlook.com - -Please include as much of the information listed below as you can to help us better understand and resolve the issue: - - * The type of issue (e.g., buffer overflow, SQL injection, or cross-site scripting) - * Full paths of source file(s) related to the manifestation of the issue - * The location of the affected source code (tag/branch/commit or direct URL) - * Any special configuration required to reproduce the issue - * Step-by-step instructions to reproduce the issue - * Proof-of-concept or exploit code (if possible) - * Impact of the issue, including how an attacker might exploit the issue - -This information will help us triage your report more quickly. - -## Policy - -See [GitHub's Safe Harbor Policy](https://docs.github.com/en/site-policy/security-policies/github-bug-bounty-program-legal-safe-harbor) +call me the original license is not open source iam github... From e52480deccc6e4e72d678a7bbab3cae5df7204a5 Mon Sep 17 00:00:00 2001 From: Ronald William Mims II <151995075+Mimsii@users.noreply.github.com> Date: Fri, 20 Sep 2024 00:21:21 -0400 Subject: [PATCH 07/20] Update SECURITY.md Signed-off-by: Ronald William Mims II <151995075+Mimsii@users.noreply.github.com> --- SECURITY.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SECURITY.md b/SECURITY.md index ad056ee9..7a052b9c 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -1 +1 @@ -call me the original license is not open source iam github... +I have the original github it's not open source. come see me... From 73a3d7a9d363c1f645aca90b9e7ac729d1ba7dbc Mon Sep 17 00:00:00 2001 From: Ronald William Mims II <151995075+Mimsii@users.noreply.github.com> Date: Fri, 20 Sep 2024 00:22:21 -0400 Subject: [PATCH 08/20] Update README.md Signed-off-by: Ronald William Mims II <151995075+Mimsii@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f248eece..87021e1c 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -*Community health files for the [@GitHub](https://github.com/github) organization* +*Community health files for the [@GitHub](https://github.com) organization* For more information, please see the article on [creating a default community health file for your organization](https://help.github.com/en/articles/creating-a-default-community-health-file-for-your-organization). From 2f356636d791fb78d7f1e2561a778642f41c2f3e Mon Sep 17 00:00:00 2001 From: Ronald William Mims II <151995075+Mimsii@users.noreply.github.com> Date: Fri, 20 Sep 2024 00:23:40 -0400 Subject: [PATCH 09/20] Update README.md Signed-off-by: Ronald William Mims II <151995075+Mimsii@users.noreply.github.com> --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 87021e1c..1ce243a1 100644 --- a/README.md +++ b/README.md @@ -3,3 +3,4 @@ *Community health files for the [@GitHub](https://github.com) organization* For more information, please see the article on [creating a default community health file for your organization](https://help.github.com/en/articles/creating-a-default-community-health-file-for-your-organization). +or you could just call me Ronald William Mims II From cc8ee1c133c15d48b9f21b4ffaef40058f0baf88 Mon Sep 17 00:00:00 2001 From: Ronald William Mims II <151995075+Mimsii@users.noreply.github.com> Date: Sat, 9 Nov 2024 12:57:33 -0600 Subject: [PATCH 10/20] Create License Signed-off-by: Ronald William Mims II <151995075+Mimsii@users.noreply.github.com> --- License | 1 + 1 file changed, 1 insertion(+) create mode 100644 License diff --git a/License b/License new file mode 100644 index 00000000..e6d457e3 --- /dev/null +++ b/License @@ -0,0 +1 @@ +Ronald William Mims II dhs.gov From 5ab877cacd3258e9e168661e11b81e45f6d947ae Mon Sep 17 00:00:00 2001 From: Ronald William Mims II <151995075+Mimsii@users.noreply.github.com> Date: Sat, 9 Nov 2024 12:58:48 -0600 Subject: [PATCH 11/20] Update README.md Signed-off-by: Ronald William Mims II <151995075+Mimsii@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1ce243a1..1b6851f0 100644 --- a/README.md +++ b/README.md @@ -3,4 +3,4 @@ *Community health files for the [@GitHub](https://github.com) organization* For more information, please see the article on [creating a default community health file for your organization](https://help.github.com/en/articles/creating-a-default-community-health-file-for-your-organization). -or you could just call me Ronald William Mims II +or you could just call me Ronald William Mims II dhs.gov From a2731811d69a70f2fb6666e1878577e9e7b29de9 Mon Sep 17 00:00:00 2001 From: Ronald William Mims II <151995075+Mimsii@users.noreply.github.com> Date: Sun, 17 Nov 2024 11:42:47 -0500 Subject: [PATCH 12/20] Create LICENSE Signed-off-by: Ronald William Mims II <151995075+Mimsii@users.noreply.github.com> --- LICENSE | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 00000000..4cd24d35 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 Ronald William Mims II + +Permission is hereby not granted, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: With our approval. + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. From 62dec1f81aff5b2b58d73e1f3004c60a8ca1dd3d Mon Sep 17 00:00:00 2001 From: Github <151995075+Mimsii@users.noreply.github.com> Date: Tue, 17 Dec 2024 13:23:28 -0600 Subject: [PATCH 13/20] Update LICENSE Signed-off-by: Github <151995075+Mimsii@users.noreply.github.com> --- LICENSE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LICENSE b/LICENSE index 4cd24d35..617b8740 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2024 Ronald William Mims II +Copyright (c) 1982 Ronald William Mims II Permission is hereby not granted, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal From 11b38f9dbb71a8e60e173215d6c89d5ce6a8fe92 Mon Sep 17 00:00:00 2001 From: GitHub <151995075+Mimsii@users.noreply.github.com> Date: Wed, 8 Jan 2025 18:37:48 +0000 Subject: [PATCH 14/20] Update LICENSE Signed-off-by: GitHub <151995075+Mimsii@users.noreply.github.com> --- LICENSE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LICENSE b/LICENSE index 617b8740..3a468a5d 100644 --- a/LICENSE +++ b/LICENSE @@ -2,7 +2,7 @@ MIT License Copyright (c) 1982 Ronald William Mims II -Permission is hereby not granted, to any person obtaining a copy +Permission is hereby not granted to sny person period without written permission.. of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell From 107c5cb1bbcfe6b021576585c074fbac4fd6f127 Mon Sep 17 00:00:00 2001 From: Mimsii <151995075+Mimsii@users.noreply.github.com> Date: Wed, 8 Jan 2025 13:05:43 -0600 Subject: [PATCH 15/20] Update SECURITY.md Signed-off-by: Mimsii <151995075+Mimsii@users.noreply.github.com> --- SECURITY.md | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/SECURITY.md b/SECURITY.md index 7a052b9c..c807ad8e 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -1 +1,27 @@ -I have the original github it's not open source. come see me... +Thanks for helping make GitHub safe for everyone. + +Security +GitHub takes the security of our software products and services seriously, including all of the open source code repositories managed through our GitHub organizations, such as GitHub. + +Even though open source repositories are outside of the scope of our bug bounty program and therefore not eligible for bounty rewards, we will ensure that your finding gets passed along to the appropriate maintainers for remediation. + +Reporting Security Issues +If you believe you have found a security vulnerability in any GitHub-owned repository, please report it to us through coordinated disclosure. + +Please do not report security vulnerabilities through public GitHub issues, discussions, or pull requests. + +Instead, please send an email to opensource-security[@]github.com. + +Please include as much of the information listed below as you can to help us better understand and resolve the issue: + +The type of issue (e.g., buffer overflow, SQL injection, or cross-site scripting) +Full paths of source file(s) related to the manifestation of the issue +The location of the affected source code (tag/branch/commit or direct URL) +Any special configuration required to reproduce the issue +Step-by-step instructions to reproduce the issue +Proof-of-concept or exploit code (if possible) +Impact of the issue, including how an attacker might exploit the issue +This information will help us triage your report more quickly. + +Policy +See GitHub's Safe Harbor Policy From df6847a1ff0e7035bfe5939802fe2b7d72e84d2f Mon Sep 17 00:00:00 2001 From: Github <151995075+Mimsii@users.noreply.github.com> Date: Mon, 20 Jan 2025 14:32:50 -0500 Subject: [PATCH 16/20] Update SECURITY.md Signed-off-by: Github <151995075+Mimsii@users.noreply.github.com> --- SECURITY.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SECURITY.md b/SECURITY.md index c807ad8e..d62a7007 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -1,7 +1,7 @@ -Thanks for helping make GitHub safe for everyone. +Thanks for helping make GitHub safe for everyone. Security -GitHub takes the security of our software products and services seriously, including all of the open source code repositories managed through our GitHub organizations, such as GitHub. +GitHub takes the security of our software products and services seriously, including all of the open source code repositories managed through our GitHub organizations, such as GitHub. Exactly why you should not go behind origin, coverup, or use blue for bad. Even though open source repositories are outside of the scope of our bug bounty program and therefore not eligible for bounty rewards, we will ensure that your finding gets passed along to the appropriate maintainers for remediation. From e0a3161105a50f50bfb562d7e98754f2450840d1 Mon Sep 17 00:00:00 2001 From: Github <151995075+Mimsii@users.noreply.github.com> Date: Mon, 20 Jan 2025 16:40:59 -0500 Subject: [PATCH 17/20] Update README.md Signed-off-by: Github <151995075+Mimsii@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1b6851f0..ba1d8590 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -*Community health files for the [@GitHub](https://github.com) organization* +*Community health files for the [@Mimsii](https://github.com) organization* For more information, please see the article on [creating a default community health file for your organization](https://help.github.com/en/articles/creating-a-default-community-health-file-for-your-organization). or you could just call me Ronald William Mims II dhs.gov From 2a7ccb9198c679e822ee9b7e669976e8deb3aace Mon Sep 17 00:00:00 2001 From: Github <151995075+Mimsii@users.noreply.github.com> Date: Mon, 20 Jan 2025 16:41:37 -0500 Subject: [PATCH 18/20] Update README.md Signed-off-by: Github <151995075+Mimsii@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ba1d8590..cf4fb7bb 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -*Community health files for the [@Mimsii](https://github.com) organization* +*Community health files for the [@Mimsii](https://github/.github.com) organization* For more information, please see the article on [creating a default community health file for your organization](https://help.github.com/en/articles/creating-a-default-community-health-file-for-your-organization). or you could just call me Ronald William Mims II dhs.gov From 1c7aebe9d9f84ecf707fcac0788692d81ff6129a Mon Sep 17 00:00:00 2001 From: Github <151995075+Mimsii@users.noreply.github.com> Date: Tue, 4 Feb 2025 04:55:36 +0000 Subject: [PATCH 19/20] Update README.md Signed-off-by: Github <151995075+Mimsii@users.noreply.github.com> --- README.md | 53 ++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 50 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index cf4fb7bb..a84b6cd3 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,53 @@ +## Hey, this is us 👋 +![An illustration showing a variety of differently themed Octocats. Monuments from different cities are indicated in the background like the Space Needle, Berlin Fernsehturm and Transamerica Pyramid.](https://user-images.githubusercontent.com/3369400/133268513-5bfe2f93-4402-42c9-a403-81c9e86934b6.jpeg) -*Community health files for the [@Mimsii](https://github/.github.com) organization* +Yes, we are building GitHub on GitHub. In fact, we’ve been doing this since **October 19th, 2007**. That's when we made our first commit. Since then we pushed **over 2.5 million commits**, opened **over 1 million issues**, submitted roughly **650k pull requests** across **4357 repositories** from over **50 countries**. 🤯 But that's just us. We are proud to be part of the work of millions of developers, companies and robots across the solar system. 🪐 Yes, [Robots](https://github.com/readme/featured/nasa-ingenuity-helicopter)! -For more information, please see the article on [creating a default community health file for your organization](https://help.github.com/en/articles/creating-a-default-community-health-file-for-your-organization). -or you could just call me Ronald William Mims II dhs.gov +### 🍿 An interconnected community + +The open source community is the 💗 heart of GitHub and fundamental to how we build software today. See for yourself: + +- [GitHub Sponsors](https://github.com/sponsors) helped support more than **5k** individuals and projects around the world 🌍 +- Open source projects on GitHub received a stunning **218 million** contributions 🚀 in the last year alone +- **Every minute** a developer creates a new release 🏄 for a public project on GitHub + +Now that we are talking about the important things, ☝️ are you contributing to open source? Yes? Okay, you rock! 🎸 If not, we can help you get started! Open source software is made by people just like you. Learn more about [how to contribute](https://opensource.guide/). + +### 🦦 Contributing to the ecosystem + +We contribute to the tools 🔧 we rely on to build and run GitHub, while also maintaining 🧙‍♂️ our own open source projects like: + +- [GitHub CLI](https://github.com/mimsii/cli) - A command line tool for GitHub +- [GitHub Desktop](https://github.com/desktop/desktop) - A visual approach to using Git with GitHub +- [Git Large File Storage](https://github.com/git-lfs/git-lfs) - A git extension for versioning large files +- [Primer](https://github.com/primer/css) - The GitHub design system + +### 👓 Appendix + +See what's next on our [public roadmap](https://github.com/github/roadmap) ✨ and [let us know](https://github.com/github/feedback) if you have any suggestions. 🙇‍♂️ Oh, and by the way, we are always hiring talented, passionate people to [join our team](https://github.com/about/careers). 🙌 + +
+ "Tell me more, I can't get enough!" +
+ +
+ +--- + +🤫 Psst! You can create your own [organization README](https://docs.github.com/en/organizations/collaborating-with-groups-in-organizations/customizing-your-organizations-profile). + + From f66cda7e7a36c637f9ee6ee03fdddda57091262f Mon Sep 17 00:00:00 2001 From: Github <151995075+Mimsii@users.noreply.github.com> Date: Tue, 4 Feb 2025 04:56:28 +0000 Subject: [PATCH 20/20] Update LICENSE Signed-off-by: Github <151995075+Mimsii@users.noreply.github.com> --- LICENSE | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LICENSE b/LICENSE index 3a468a5d..8923e4f4 100644 --- a/LICENSE +++ b/LICENSE @@ -2,8 +2,8 @@ MIT License Copyright (c) 1982 Ronald William Mims II -Permission is hereby not granted to sny person period without written permission.. -of this software and associated documentation files (the "Software"), to deal +Permission is hereby not granted to any person period. +Of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is