You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for taking the time to fill out this bug report!
10
+
11
+
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] 🙌
12
+
13
+
Remember to redact any sensitive information such as authentication credentials and/or license keys!
14
+
15
+
**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].
Thanks for taking the time to fill out this feature request!
10
+
11
+
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] 🙌
12
+
13
+
**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].
Copy file name to clipboardExpand all lines: .github/workflows/f5_cla.yml
+6-5Lines changed: 6 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -19,20 +19,21 @@ jobs:
19
19
if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have hereby read the F5 CLA and agree to its terms') || github.event_name == 'pull_request_target'
custom-notsigned-prcomment: '🎉 Thank you for your contribution! It appears you have not yet signed the F5 Contributor License Agreement (CLA), which is required for your changes to be incorporated into an F5 Open Source Software (OSS) project. Please kindly read the [F5 CLA](https://github.com/f5/.github/blob/main/CLA/cla-markdown.md) and reply on a new comment with the following text to agree:'
25
+
custom-notsigned-prcomment: '🎉 Thank you for your contribution! It appears you have not yet signed the [F5 Contributor License Agreement (CLA)](https://github.com/f5/f5-cla/blob/main/docs/f5_cla.md), which is required for your changes to be incorporated into an F5 Open Source Software (OSS) project. Please kindly read the [F5 CLA](https://github.com/f5/f5-cla/blob/main/docs/f5_cla.md) and reply on a new comment with the following text to agree:'
28
26
custom-pr-sign-comment: 'I have hereby read the F5 CLA and agree to its terms'
29
27
custom-allsigned-prcomment: '✅ All required contributors have signed the F5 CLA for this PR. Thank you!'
30
28
# Remote repository storing CLA signatures.
31
29
remote-organization-name: f5
32
30
remote-repository-name: f5-cla-data
31
+
# Branch where CLA signatures are stored.
32
+
branch: main
33
33
path-to-signatures: signatures/signatures.json
34
34
# Comma separated list of usernames for maintainers or any other individuals who should not be prompted for a CLA.
35
-
allowlist: alessfg, oxpa, bot*
35
+
# NOTE: You will want to edit the usernames to suit your project needs.
# (Optional) fine-grained personal access token. Uncomment the `repo_token` line below if:
42
-
# - You want to enable the Branch-Protection check on a *public* repository.
43
-
# - You are installing the OSSF Scorecard on a *private* repository.
44
-
# To create the PAT, follow the steps in https://github.com/ossf/scorecard-action#authentication-with-fine-grained-pat-optional.
45
-
# repo_token: ${{ secrets.SCORECARD_TOKEN }}
46
-
47
35
# Publish the results for public repositories to enable scorecard badges. For more details, see https://github.com/ossf/scorecard-action#publishing-results.
48
-
# For private repositories, `publish_results` will automatically be set to `false`, regardless of the value entered here.
49
36
publish_results: true
50
37
51
38
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF format to the repository Actions tab.
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+6-12Lines changed: 6 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,21 +5,15 @@ The following is a set of guidelines for contributing to the NGINX Ansible role.
5
5
#### Table Of Contents
6
6
7
7
[Getting Started](#getting-started)
8
-
9
8
[Contributing](#contributing)
10
-
11
9
[Code Guidelines](#code-guidelines)
12
-
13
-
-[Git Guidelines](#git-guidelines)
14
-
-[Ansible Guidelines](#ansible-guidelines)
15
-
16
10
[Code of Conduct](/CODE_OF_CONDUCT.md)
17
11
18
12
## Getting Started
19
13
20
-
Follow this project's [Installation Guide](/README.md#Installation) to install Ansible, Ansible Lint, and Molecule and get ready to develop and test the NGINX Ansible role.
14
+
Follow the role's [installation guide](/README.md#Installation) to install Ansible, Ansible Lint, and Molecule and get ready to develop and test the NGINX Ansible role.
21
15
22
-
### Project Structure
16
+
### Project Overview & Structure
23
17
24
18
- The NGINX Ansible role is written in [`yaml`](https://yaml.org) and supports NGINX Open Source, NGINX Plus, NGINX Agent and NGINX Amplify.
25
19
- The project follows the standard [Ansible role directory structure](https://docs.ansible.com/ansible/latest/user_guide/playbooks_reuse_roles.html):
@@ -34,23 +28,23 @@ Follow this project's [Installation Guide](/README.md#Installation) to install A
34
28
35
29
### Report a Bug
36
30
37
-
To report a bug, open an issue on GitHub with the label `bug` using the available bug report issue template. Please ensure the bug has not already been reported. **If the bug is a potential security vulnerability, please report it using our [security policy](/SECURITY.md).**
31
+
To report a bug, open an issue on GitHub with the label `bug` using the available [bug report issue form](/.github/ISSUE_TEMPLATE/bug_report.yml). Please ensure the bug has not already been reported. **If the bug is a potential security vulnerability, please report it using our [security policy](/SECURITY.md).**
38
32
39
33
### Suggest a Feature or Enhancement
40
34
41
-
To suggest a feature or enhancement, please create an issue on GitHub with the label `enhancement` using the available [feature request template](/.github/feature_request_template.md). Please ensure the feature or enhancement has not already been suggested.
35
+
To suggest a feature or enhancement, please create an issue on GitHub with the label `enhancement` using the available [feature request issue form](/.github/ISSUE_TEMPLATE/feature_request.yml). Please ensure the feature or enhancement has not already been suggested.
42
36
43
37
### Open a Pull Request (PR)
44
38
45
39
- Fork the repo, create a branch, implement your changes, add any relevant tests, and submit a PR when your changes are **tested** (using Molecule) and ready for review.
46
40
- Fill in the [PR template](/.github/pull_request_template.md).
47
41
48
42
> [!NOTE]
49
-
> If you'd like to implement a new feature, please consider creating a [feature request issue](/.github/feature_request_template.md) first to start a discussion about the feature.
43
+
> If you'd like to implement a new feature, please consider creating a [feature request issue](/.github/ISSUE_TEMPLATE/feature_request.yml) first to start a discussion about the feature.
50
44
51
45
#### F5 Contributor License Agreement (CLA)
52
46
53
-
F5 requires all external contributors to agree to the terms of the F5 CLA (available [here](https://github.com/f5/.github/blob/main/CLA/cla-markdown.md)) before any of their changes can be incorporated into an F5 Open Source repository.
47
+
F5 requires all contributors to agree to the terms of the F5 CLA (available [here](https://github.com/f5/f5-cla/blob/main/docs/f5_cla.md)) before any of their changes can be incorporated into an F5 Open Source repository (even contributions to the F5 CLA itself!).
54
48
55
49
If you have not yet agreed to the F5 CLA terms and submit a PR to this repository, a bot will prompt you to view and agree to the F5 CLA. You will have to agree to the F5 CLA terms through a comment in the PR before any of your changes can be merged. Your agreement signature will be safely stored by F5 and no longer be required in future PRs.
[](https://www.repostatus.org/#active)
0 commit comments