-
Notifications
You must be signed in to change notification settings - Fork 152
chore: update community files and workflows for org migration #387
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 5 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
1a6e257
chore: update comm files and workflows for org migration
TasoOneAsia 0a20119
chore: add default CODEOWNERS file
TasoOneAsia 5d84082
fix(.github): fix links in issue and feature forms
TasoOneAsia 23ccd4f
chore(f5-cla): only include "bot*" in allowlist
TasoOneAsia ac7043b
chore: resolve PR comments
TasoOneAsia fa5e4ba
Update .github/ISSUE_TEMPLATE/bug_report.yml
TasoOneAsia 610a537
Update .github/ISSUE_TEMPLATE/bug_report.yml
TasoOneAsia cb4ed8b
Update .github/ISSUE_TEMPLATE/bug_report.yml
TasoOneAsia 407de76
Update .github/ISSUE_TEMPLATE/feature_request.yml
TasoOneAsia 8fa6df8
Update .github/workflows/ossf_scorecard.yml
TasoOneAsia a82bf0e
Update .github/ISSUE_TEMPLATE/bug_report.yml
TasoOneAsia 6ab83f5
Update .github/ISSUE_TEMPLATE/bug_report.yml
TasoOneAsia 0ee0a8d
Update .github/ISSUE_TEMPLATE/feature_request.yml
TasoOneAsia 9a32acb
Update .github/ISSUE_TEMPLATE/bug_report.yml
TasoOneAsia b1bec24
Update .github/ISSUE_TEMPLATE/bug_report.yml
TasoOneAsia 72b05e0
chore: revert breaking lines at 90 chars in markdown files
TasoOneAsia File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
##################### | ||
# Main global owner # | ||
##################### | ||
|
||
* |
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
--- | ||
name: 🐛 Bug report | ||
description: Create a report to help us improve | ||
labels: | ||
- bug | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
|
||
Before you continue filling out this report, please take a moment to check that your bug has not been [already reported on GitHub][issue search] 🙌 | ||
|
||
Remember to redact any sensitive information such as authentication credentials and/or license keys! | ||
|
||
**Note:** If you are seeking community support or have a question, please consider starting a new thread via [GitHub discussions][discussions] or the [NGINX Community forum][forum]. | ||
|
||
[issue search]: https://github.com/nginx/nginx-s3-gateway/issues | ||
[discussions]: https://github.com/nginx/nginx-s3-gateway/discussions | ||
[forum]: https://community.nginx.org | ||
|
||
- type: textarea | ||
id: overview | ||
attributes: | ||
label: Bug Overview | ||
description: A clear and concise overview of the bug. | ||
placeholder: When I do "X", "Y" happens instead of "Z". | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: behavior | ||
attributes: | ||
label: Expected Behavior | ||
description: A clear and concise description of what you expected to happen. | ||
placeholder: When I do "X", I expect "Z" to happen. | ||
TasoOneAsia marked this conversation as resolved.
Show resolved
Hide resolved
|
||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: steps | ||
attributes: | ||
label: Steps to Reproduce the Bug | ||
description: Detail the series of steps required to reproduce the bug. | ||
placeholder: When I run "X" using [...], "X" fails with "Y" error message. If I check the terminal outputs and/or logs, I see the following info. | ||
TasoOneAsia marked this conversation as resolved.
Show resolved
Hide resolved
|
||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: environment | ||
attributes: | ||
label: Environment Details | ||
description: Please provide details about your environment. | ||
value: | | ||
- Version of the S3 container used (DockerHub/GCR): | ||
TasoOneAsia marked this conversation as resolved.
Show resolved
Hide resolved
|
||
- Commit/Tag (If Building from Source): | ||
TasoOneAsia marked this conversation as resolved.
Show resolved
Hide resolved
|
||
- Version of NGINX Open Source or NGINX Plus: [OSS/Plus] | ||
- Version of NGINX JavaScript: | ||
TasoOneAsia marked this conversation as resolved.
Show resolved
Hide resolved
|
||
- Target deployment platforms [e.g. AWS/GCP/local cluster/etc...]: | ||
- S3 backend implementation: [e.g. AWS, Ceph, NetApp StorageGrid, etc...] | ||
- Authentication method: [IAM, IAM with Fargate, IAM with K8S, AWS Credentials, etc...] | ||
TasoOneAsia marked this conversation as resolved.
Show resolved
Hide resolved
|
||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: context | ||
attributes: | ||
label: Additional Context | ||
description: Add any other context about the problem here. | ||
placeholder: Feel free to add any other context/information/screenshots/etc... that you think might be relevant to this issue in here. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: 💬 Talk to the NGINX community! | ||
url: https://community.nginx.org | ||
about: A community forum for NGINX users, developers, and contributors | ||
- name: 📝 Code of Conduct | ||
url: https://www.contributor-covenant.org/version/2/1/code_of_conduct | ||
about: NGINX follows the Contributor Covenant Code of Conduct to ensure a safe and inclusive community | ||
- name: 💼 For commercial & enterprise users | ||
url: https://www.f5.com/products/nginx | ||
about: F5 offers a wide range of NGINX products for commercial & enterprise users |
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
--- | ||
name: ✨ Feature request | ||
description: Suggest an idea for this project | ||
labels: | ||
- enhancement | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this feature request! | ||
|
||
Before you continue filling out this request, please take a moment to check that your feature has not been [already requested on GitHub][issue search] 🙌 | ||
|
||
**Note:** If you are seeking community support or have a question, please consider starting a new thread via [GitHub discussions][discussions] or the [NGINX Community forum][forum]. | ||
|
||
[issue search]: https://github.com/nginx/nginx-s3-gateway/issues | ||
[discussions]: https://github.com/nginx/nginx-s3-gateway/discussions | ||
[forum]: https://community.nginx.org | ||
|
||
- type: textarea | ||
id: overview | ||
attributes: | ||
label: Feature Overview | ||
description: A clear and concise description of what the feature request is. | ||
placeholder: I would like this project to be able to do "X". | ||
TasoOneAsia marked this conversation as resolved.
Show resolved
Hide resolved
|
||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: alternatives | ||
attributes: | ||
label: Alternatives Considered | ||
description: Detail any potential alternative solutions/workarounds you've used or considered. | ||
placeholder: I have done/might be able to do "X" in this project by doing "Y". | ||
TasoOneAsia marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
- type: textarea | ||
id: context | ||
attributes: | ||
label: Additional Context | ||
description: Add any other context about the problem here. | ||
placeholder: Feel free to add any other context/information/screenshots/etc... that you think might be relevant to this feature request here. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.