From bd1647a0a483a998a6ae2c8c49f3434066a6cb15 Mon Sep 17 00:00:00 2001 From: "ollion-repository-provisioner[bot]" <156162361+ollion-repository-provisioner[bot]@users.noreply.github.com> Date: Thu, 1 Aug 2024 20:59:30 +0000 Subject: [PATCH] Initial commit --- .github/PULL_REQUEST_TEMPLATE.md | 13 ++ .github/workflows/README.md | 0 .github/workflows/gitleaks.yml | 33 ++++ .gitignore | 29 ++++ .pre-commit-config.yaml | 9 ++ CHANGELOG.md | 51 +++++++ CODEOWNERS | 4 + CONTRIBUTING.md | 92 +++++++++++ LICENSE | 201 ++++++++++++++++++++++++ README.md | 252 +++++++++++++++++++++++++++++++ README.png | Bin 0 -> 38619 bytes SUPPORT.md | 27 ++++ 12 files changed, 711 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE.md create mode 100644 .github/workflows/README.md create mode 100644 .github/workflows/gitleaks.yml create mode 100644 .gitignore create mode 100644 .pre-commit-config.yaml create mode 100644 CHANGELOG.md create mode 100644 CODEOWNERS create mode 100644 CONTRIBUTING.md create mode 100644 LICENSE create mode 100644 README.md create mode 100644 README.png create mode 100644 SUPPORT.md diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..eecba4f --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,13 @@ +### Checklist for raising a PR +- [ ] Is this step done? +- [ ] Did you check the contributing doc? +- [ ] Did you check the existing issues for similar queries? + + +### Describe your PR + + +### Add additional question here +- [ ] `Yes` +- [ ] `No` +- [ ] `NA` \ No newline at end of file diff --git a/.github/workflows/README.md b/.github/workflows/README.md new file mode 100644 index 0000000..e69de29 diff --git a/.github/workflows/gitleaks.yml b/.github/workflows/gitleaks.yml new file mode 100644 index 0000000..28d7827 --- /dev/null +++ b/.github/workflows/gitleaks.yml @@ -0,0 +1,33 @@ +name: Gitleaks - Secret Scanning +on: + pull_request: + push: + workflow_dispatch: + schedule: + - cron: "3 */4 * * *" # run once a day at 4 AM +jobs: + scan: + name: gitleaks + runs-on: cldcvr-pvt-runner-aws + permissions: + id-token: write + contents: write + pull-requests: write + steps: + - name: cleanup directory + run: | + ls -la ./ /tmp/ + rm -rf ./* /tmp/gitleaks.tmp /tmp/* || true + rm -rf ./.??* || true + ls -la ./ + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + - uses: gitleaks/gitleaks-action@v2.3.2 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITLEAKS_LICENSE: ${{ secrets.GITLEAKS_LICENSE}} # Only required for Organizations, not personal accounts. + GITLEAKS_NOTIFY_USER_LIST: "@amitshcc, @cldcvr-audit, @dshelley66, @ElizabethAnthony94, @gouravjoshicldcvr, @SachinCldCvr, @sagarpatil23192, @tridev-cldcvr, @varunchandak, @sweetib" + GITLEAKS_ENABLE_COMMENTS: true + GITLEAKS_ENABLE_UPLOAD_ARTIFACT: false + GITLEAKS_ENABLE_SUMMARY: true diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7a3e2fd --- /dev/null +++ b/.gitignore @@ -0,0 +1,29 @@ +# Local .terraform directories +**/.terraform/* + +# .tfstate files +*.tfstate +*.tfstate.* + +# Crash log files +crash.log + +# Ignore any .tfvars files that are generated automatically for each Terraform run. Most +# .tfvars files are managed as part of configuration and so should be included in +# version control. +# +# example.tfvars + +# Ignore override files as they are usually used to override resources locally and so +# are not checked in +override.tf +override.tf.json +*_override.tf +*_override.tf.json + +# Include override files you do wish to add to version control using negated pattern +# +# !example_override.tf + +# Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan +# example: *tfplan* diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000..ba1f559 --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,9 @@ +repos: +- repo: local + hooks: + - id: trufflehog + name: TruffleHog + description: Detect secrets in your data. + entry: bash -c 'trufflehog git file://. --since-commit HEAD --only-verified --fail' + language: system + stages: ["commit", "push"] diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..016b798 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,51 @@ + +# Change Log +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](http://keepachangelog.com/) +and this project adheres to [Semantic Versioning](http://semver.org/). + +## [Unreleased] - yyyy-mm-dd + +Here we write upgrading notes for brands. It's a team effort to make them as +straightforward as possible. + +### Added +- [PROJECTNAME-XXXX](http://tickets.projectname.com/browse/PROJECTNAME-XXXX) + MINOR Ticket title goes here. +- [PROJECTNAME-YYYY](http://tickets.projectname.com/browse/PROJECTNAME-YYYY) + PATCH Ticket title goes here. + +### Changed + +### Fixed + +## [1.2.4] - 2017-03-15 + +Here we would have the update steps for 1.2.4 for people to follow. + +### Added + +### Changed + +- [PROJECTNAME-ZZZZ](http://tickets.projectname.com/browse/PROJECTNAME-ZZZZ) + PATCH Drupal.org is now used for composer. + +### Fixed + +- [PROJECTNAME-TTTT](http://tickets.projectname.com/browse/PROJECTNAME-TTTT) + PATCH Add logic to runsheet teaser delete to delete corresponding + schedule cards. + +## [1.2.3] - 2017-03-14 + +### Added + +### Changed + +### Fixed + +- [PROJECTNAME-UUUU](http://tickets.projectname.com/browse/PROJECTNAME-UUUU) + MINOR Fix module foo tests +- [PROJECTNAME-RRRR](http://tickets.projectname.com/browse/PROJECTNAME-RRRR) + MAJOR Module foo's timeline uses the browser timezone for date resolution \ No newline at end of file diff --git a/CODEOWNERS b/CODEOWNERS new file mode 100644 index 0000000..6a57207 --- /dev/null +++ b/CODEOWNERS @@ -0,0 +1,4 @@ +# Sample codeowners file. Make change accordingly. + +* @varunchandak +.github/* @varunchandak \ No newline at end of file diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..b8a62fb --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,92 @@ +# Contributing + +When contributing to this repository, please first discuss the change you wish to make via issue, +email, or any other method with the owners of this repository before making a change. + +Please note we have a code of conduct, please follow it in all your interactions with the project. + +## Pull Request Process + +1. Ensure any install or build dependencies are removed before the end of the layer when doing a + build. +2. Update the README.md with details of changes to the interface, this includes new environment + variables, exposed ports, useful file locations and container parameters. +3. Increase the version numbers in any examples files and the README.md to the new version that this + Pull Request would represent. The versioning scheme we use is [SemVer](http://semver.org/). +4. You may merge the Pull Request in once you have the sign-off of two other developers, or if you + do not have permission to do that, you may request the second reviewer to merge it for you. + +## Code of Conduct + +### Our Pledge + +In the interest of fostering an open and welcoming environment, we as +contributors and maintainers pledge to making participation in our project and +our community a harassment-free experience for everyone, regardless of age, body +size, disability, ethnicity, gender identity and expression, level of experience, +nationality, personal appearance, race, religion, or sexual identity and +orientation. + +### Our Standards + +Examples of behavior that contributes to creating a positive environment +include: + +* Using welcoming and inclusive language +* Being respectful of differing viewpoints and experiences +* Gracefully accepting constructive criticism +* Focusing on what is best for the community +* Showing empathy towards other community members + +Examples of unacceptable behavior by participants include: + +* The use of sexualized language or imagery and unwelcome sexual attention or +advances +* Trolling, insulting/derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or electronic + address, without explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting + +### Our Responsibilities + +Project maintainers are responsible for clarifying the standards of acceptable +behavior and are expected to take appropriate and fair corrective action in +response to any instances of unacceptable behavior. + +Project maintainers have the right and responsibility to remove, edit, or +reject comments, commits, code, wiki edits, issues, and other contributions +that are not aligned to this Code of Conduct, or to ban temporarily or +permanently any contributor for other behaviors that they deem inappropriate, +threatening, offensive, or harmful. + +### Scope + +This Code of Conduct applies both within project spaces and in public spaces +when an individual is representing the project or its community. Examples of +representing a project or community include using an official project e-mail +address, posting via an official social media account, or acting as an appointed +representative at an online or offline event. Representation of a project may be +further defined and clarified by project maintainers. + +### Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported by contacting the project team at [gcf-team](mailto:gcf-team@cldcvr.com). All +complaints will be reviewed and investigated and will result in a response that +is deemed necessary and appropriate to the circumstances. The project team is +obligated to maintain confidentiality with regard to the reporter of an incident. +Further details of specific enforcement policies may be posted separately. + +Project maintainers who do not follow or enforce the Code of Conduct in good +faith may face temporary or permanent repercussions as determined by other +members of the project's leadership. + +### Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, +available at [http://contributor-covenant.org/version/1/4][version] + +[homepage]: http://contributor-covenant.org +[version]: http://contributor-covenant.org/version/1/4/ \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..261eeb9 --- /dev/null +++ b/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/README.md b/README.md new file mode 100644 index 0000000..4ed7dbf --- /dev/null +++ b/README.md @@ -0,0 +1,252 @@ +> Replace the contents accordingly + +--- + +# cldcvr-repo-template +Template for repo creation in CldCvr GitHub Organization + +This repo contains the essential files required to create a repo using best practices. The filenames and it's usage is in below table. + +# Usage + +| File Name | Location | Usage | +| --- | --- | --- | +| README.md | `root` | Contains the details of contents present in the repo. For example, it can contain the version of Terraform and it's usage steps | +| CODEOWNERS | `root` | Contains the ownership of various folders present in the repo. This is useful when raising a PR, so the CODEOWNERS are assigned as reviewers automatically. More details [here](https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners) | +| LICENSE | `root` | Contains the license information for the repo depending on the case of OSS. Check with your organizational policies. | +| CONTRIBUTING.md | `root` | A CONTRIBUTING.md file, in your open source repository or site, provides potential project contributors with a short guide to how they can help with your project. More details [here](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/setting-guidelines-for-repository-contributors) | +| .gitignore | `root` | gitignore file is a text file that tells Git which files or folders to ignore in a project. | +| SUPPORT.md | `root` | Contains the usage for raising support related to the project. Can vary from organization to organization. | +| PULL_REQUEST_TEMPLATE.md | `.github/` | This file triggers project contributors to automatically see the template's contents in a new pull request body. The template can customize and standardize the information you'd like included when contributors create pull requests. | +| `.yml` | `.github/workflows/` | Contains workflow files for automated CI/CD integrations with GitHub Actions or 3rd party extensions | + +--- + +> The below content is referred from [joelparkerhenderson/github-special-files-and-paths](https://github.com/joelparkerhenderson/github-special-files-and-paths) +# GitHub special files and paths + +GitHub special files and paths + +GitHub uses special files such as `README` and `LICENSE`, and special paths such as `/.github` and `/docs`, to improve repository managment and developer interactions. This page is a summary. We welcome pull requests. + +* [Introduction](#introduction) +* [README](#readme) +* [CHANGELOG](#changelog) +* [LICENSE](#license) +* [SUPPORT](#support) +* [SECURITY](#security) +* [CODE_OF_CONDUCT](#code_of_conduct) +* [CONTRIBUTING](#contributing) +* [CONTRIBUTORS](#contributors) +* [AUTHORS](#authors) +* [ACKNOWLEDGMENTS](#acknowledgments) +* [CODEOWNERS](#codeowners) +* [ISSUE_TEMPLATE](#issue_template) +* [PULL_REQUEST_TEMPLATE](#pull_request_template) +* [CITATION.cff](#citation-cff) +* [FUNDING](#funding) +* [dependabot.yml](#dependabotyml) +* [workflows](#workflows) +* [Jekyll](#jekyll) + + +## Introduction + +GitHub special files can typically be written with a variety of formats and file name extensions: + + * Freeform text, such as `README` or `README.txt`. + + * Markup formats, such as `README.markdown` or `README.asciidoc` - see [markups](https://github.com/github/markup/blob/master/README.md#markups) + + * Custom syntaxes, such as the file `CODEOWNERS`. + +GitHub special files are typically located at the repository top level or in special paths: + + * `/.github` is a hidden dot file directory. + + * `/docs` is a typical documentation directory. + + * Custom paths, such as the directory `ISSUE_TEMPLATE`. + +The special files and paths are sometimes also known as community health files, recommended repository files, well-known configurations, etc. + +For a general overview see [building a strong community](https://help.github.com/categories/building-a-strong-community/) and [GitHub's Open Source Guides](https://opensource.guide/). + + +## README + + * File: `README` or `README.txt` or `README.md` etc. + + * Help: + + * Awesome: list: + +This file that explains your project, what it does, why it is useful, etc. + +This file is often the first item a visitor will see when visiting your repository, because GitHub automatically shows this file to repository visitors. + + +## CHANGELOG + + * File: `CHANGELOG` or `CHANGELOG.txt` or `CHANGELOG.md` etc. + +This file explains a reposity's notable changes, updates, versions, bug fixes, and the like. This file name convention has been around since the early days of the web. + + +## LICENSE + + * File: `LICENSE` or `LICENSE.txt` or `LICENSE.md` etc. + + * Help: + +This file explains the respostory's legal license, such as any legal rights, any copyright restrictions, etc. If you include a detectable license in your repository, people who visit your repository will see it at the top of the repository page. + +If you want help to choose a license, then try https://choosealicense.com + +If your project is significant, or contains other peoples' work or intellectual property, then you may want to consult with a lawyer who can help you with your specific goals and needs. If you don't provide a license, then in some locations a default copyright law will apply. + + +## SUPPORT + + * File: `SUPPORT` or `SUPPORT.txt` or `SUPPORT.md` etc. + +This file explains how a reader can get help with the repository and project. Github links this file on the page "New Issue". Unlike the "CONTRIBUTING" file, GitHub does not link this file on the page "New Pull Request". + + +## SECURITY + + * File: `SECURITY` or `SECURITY.txt` or `SECURITY.md` etc. + + * Help: + +This file explains the project's security policies, such as a list of versions that are currently being maintained with security updates. This file also provides instructions on how users can submit a report of a vulnerability. + +GitHub links to this file, under the "Policy" link on the "Security" tab of your repository. + + +## CODE_OF_CONDUCT + + * File: `CODE_OF_CONDUCT` or `CODE_OF_CONDUCT.txt` or `CODE_OF_CONDUCT.md` etc. + + * Help: + + * Awesome: list: + +This file explains how to engage in a community, and how to inclusive environment that respects all people, and how to address any problems among members of your project's community. + + +## CONTRIBUTING + + * File: `CONTRIBUTING` or `CONTRIBUTING.txt` or `CONTRIBUTING.md` etc. + + * Help: + + * Awesome: list: + +This file explains how people can contribute to the project. This file can help verify people are submitting well-formed pull requests and opening useful issues. + +GitHub links to this file, on the page "New Issue" and the page "New Pull Request". + + +## CONTRIBUTORS + + * File: `CONTRIBUTORS` or `CONTRIBUTORS.txt` or `CONTRIBUTORS.md` etc. + +This file explains who has contributed to the project. When we use a `CONTRIBUTORS` file in our projects, we ask people how they want to be listed, such as by their name, handle, email address, website link, etc. + +Compare this file to the file `AUTHORS`. + + +## AUTHORS + + * File: `AUTHORS` or `AUTHORS.txt` or `AUTHORS.md` etc. + +This file lists people who are significant authors of the project, such as the people who are legally related to the work. The GNU project states "Only the contributions that are legally significant for copyright purposes (see Legally Significant) need to be listed. Small contributions, bug reports, ideas, etc., can be omitted." + +Compare this file to the file `CONTRIBUTORS`. + + +## ACKNOWLEDGMENTS + + * File: `ACKNOWLEDGMENTS` or `ACKNOWLEDGMENTS.txt` or `ACKNOWLEDGMENTS.md` etc. + +This file explains relevant related work, such as other projects that are dependencies, or libraries, or modules, or have their own copyrights or licenses that you want to include in your project. + + +## CODEOWNERS + + * File: `CODEOWNERS` + + * Help: + +This file defines individuals or teams that are responsible for code in a repository. + +Code owners are automatically requested for review when someone opens a pull request that modifies code that they own. When someone with admin or owner permissions has enabled required reviews, they also can optionally require approval from a code owner before the author can merge a pull request in the repository. + + +## ISSUE_TEMPLATE + + * File: `ISSUE_TEMPLATE` + + * Help: + + * Awesome: list: + +When you add an issue template to your repository, project contributors will automatically see the template's contents in the issue body. Templates customize and standardize the information you'd like included when contributors open issues. + +See + +To add multiple issue templates to a repository create an `ISSUE_TEMPLATE/` directory in your project root. Within that `ISSUE_TEMPLATE/` directory you can create as many issue templates as you need, for example `ISSUE_TEMPLATE/bugs.md`. + + +## PULL_REQUEST_TEMPLATE + + * File: `PULL_REQUEST_TEMPLATE` or can be a subdirectory + + * Help: + + * Awesome: list: + +This file triggers project contributors to automatically see the template's contents in a new pull request body. The template can customize and standardize the information you'd like included when contributors create pull requests. + +See + +You can create a `PULL_REQUEST_TEMPLATE/` subdirectory in any of the supported folders to contain multiple pull request templates. Use the template query parameter to specify the template that will automatically fill the pull request body. For more information, see "[About automation for issues and pull requests with query parameters.](https://help.github.com/articles/about-automation-for-issues-and-pull-requests-with-query-parameters/)" + + +## CITATION.cff + + * File: `CITATION.cff` + + * Help: + +This file explains how you would like people to cite your work. The citation file format is plain text with human-readable and machine-readable citation information. + +When you add this file to the default branch root directory of your repository, then GitHub automatically links to it from the repository landing page. + + +## FUNDING.yml + + * File: `.github/FUNDING.yml` + + * Help: + +You can configure your sponsor button by adding a file in your repository on the default branch. You can configure the button to include sponsored developers in GitHub Sponsors, external funding platforms, or a custom funding URL. + + +## dependabot.yml + + * File: `.github/dependabot.yml` + + * Help: + +Dependabot is a GitHub tool that provides automated dependency updates. To enable updates, create a Dependabot configuration file and add it to a repository. The file describes the dependencies to update, where dependency manifests are located, etc. If Dependbot discovers that an update is available, then Dependabot sends you a pull request to update your dependency. + + +## Workflows + + * Directory: `.github/workflows` + + * Help: + +A workflow is a configurable automated process made up of one or more jobs. You must create a YAML file to define your workflow configuration. Workflow files use YAML syntax, and must have file extension `.yml` or `.yaml`. \ No newline at end of file diff --git a/README.png b/README.png new file mode 100644 index 0000000000000000000000000000000000000000..5640194c42896969e0ce20ac94cab49a7ac253d5 GIT binary patch literal 38619 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]M?CX(%I>*NuNvl>*Ct{V7%T!0A*{N4r>`HZji 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 literal 0 HcmV?d00001 diff --git a/SUPPORT.md b/SUPPORT.md new file mode 100644 index 0000000..d515dcf --- /dev/null +++ b/SUPPORT.md @@ -0,0 +1,27 @@ +# Support and Help + +Need help getting started or using a project? Here's how. + +## How to get help + +Generally, we do not use GitHub as a support forum. For any usage questions that are not specific to the project itself, please ask on [Stack Overflow](https://stackoverflow.com) instead. By doing so, you are more likely to quickly solve your problem, and you will allow anyone else with the same question to find the answer. This also allows maintainers to focus on improving the project for others. + +Please seek support in the following ways: + +1. :book: **Read the documentation and other guides** for the project to see if you can figure it out on your own. These should be located in a root `docs/` directory. If there is an example project, explore that to learn how it works to see if you can answer your question. + +1. :bulb: **Search for answers and ask questions on [Stack Overflow](https://stackoverflow.com).** This is the most appropriate place for debugging issues specific to your use of the project, or figuring out how to use the project in a specific way. + +1. :memo: As a **last resort**, you may open an issue on GitHub to ask for help. However, please clearly explain what you are trying to do, and list what you have already attempted to solve the problem. Provide code samples, but **do not** attach your entire project for someone else to debug. Review our [contributing guidelines](https://github.com/cldcvr/cldcvr-repo-template/blob/main/CONTRIBUTING.md). + +## What NOT to do + +Please **do not** do any the following: + +1. :x: Do not reach out to the author or contributor on Twitter (or other social media) by tweeting or sending a direct message. + +1. :x: Do not email the author or contributor. + +1. :x: Do not open duplicate issues or litter an existing issue with +1's. + +These are not appropriate avenues for seeking help or support with an open-source project. Please follow the guidelines in the previous section. Public questions get public answers, which benefits everyone in the community. ✌️