From 15ee8e5b77a2ac7039832c3ba0f18444b821f2bf Mon Sep 17 00:00:00 2001 From: Andrew Klychkov Date: Tue, 10 Sep 2024 08:22:48 +0200 Subject: [PATCH 1/4] Docs: remove IRC remnants --- .github/ISSUE_TEMPLATE/bug_report.yml | 7 +++---- .github/ISSUE_TEMPLATE/documentation_report.yml | 8 +++----- .github/ISSUE_TEMPLATE/feature_request.yml | 8 +++----- CONTRIBUTING.md | 3 ++- README.md | 1 - 5 files changed, 11 insertions(+), 16 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index a18449340..5bca43e64 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -9,10 +9,9 @@ body: value: | **Thank you for reporting a bug in Ansible Runner.** - If you are looking for community support, please reach out on IRC: - - [#ansible](https://web.libera.chat/#ansible) - [#ansible-runner](https://web.libera.chat/#ansible-runner) + If you are looking for community support, please visit + the [Community guide](https://ansible.readthedocs.io/projects/runner/en/latest/community/) + for information how to reach out to us. - type: input label: Ansible Runner version diff --git a/.github/ISSUE_TEMPLATE/documentation_report.yml b/.github/ISSUE_TEMPLATE/documentation_report.yml index 33ba94394..3120b8096 100644 --- a/.github/ISSUE_TEMPLATE/documentation_report.yml +++ b/.github/ISSUE_TEMPLATE/documentation_report.yml @@ -10,11 +10,9 @@ body: value: | **Thank you reporting an issue with Ansible Runner documentation.** - If you are looking for community support, please reach out on IRC: - - [#ansible](https://web.libera.chat/#ansible) - [#ansible-runner](https://web.libera.chat/#ansible-runner) - + If you are looking for community support, please visit + the [Community guide](https://ansible.readthedocs.io/projects/runner/en/latest/community/) + for information how to reach out to us. - type: attributes: diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index 8adccc5ce..91c87238b 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -10,11 +10,9 @@ body: value: | **Thank you for suggesting a new feature for Ansible Runner.** - If you are looking for community support, please reach out on IRC: - - [#ansible](https://web.libera.chat/#ansible) - [#ansible-runner](https://web.libera.chat/#ansible-runner) - + If you are looking for community support, please visit + the [Community guide](https://ansible.readthedocs.io/projects/runner/en/latest/community/) + for information how to reach out to us. - type: attributes: diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e8146c6ad..1c70ce557 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -2,7 +2,8 @@ Hi there! We're excited to have you as a contributor. -If you have questions about this document or anything not covered here? Come chat with us `#ansible-awx` on irc.libera.chat +If you have questions about this document or anything not covered here? +See the [Community section](https://ansible.readthedocs.io/projects/runner/en/latest/community/) of the docs for information about getting in touch. ## Things to know prior to submitting code diff --git a/README.md b/README.md index 2a0056e70..e68619bf5 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,6 @@ Ansible Runner [![PyPi](https://img.shields.io/pypi/v/ansible-runner.svg?logo=Python)](https://pypi.org/project/ansible-runner/) [![Documentation](https://readthedocs.org/projects/ansible-runner/badge/?version=stable)](https://ansible-runner.readthedocs.io/en/latest/) [![Code of Conduct](https://img.shields.io/badge/Code%20of%20Conduct-Ansible-silver.svg)](https://docs.ansible.com/ansible/latest/community/code_of_conduct.html) -[![Ansible Mailing lists](https://img.shields.io/badge/Mailing%20lists-Ansible-orange.svg)](https://docs.ansible.com/ansible/latest/community/communication.html#mailing-list-information) [![codecov](https://codecov.io/gh/ansible/ansible-runner/branch/devel/graph/badge.svg?token=CmCcjBz0pQ)](https://codecov.io/gh/ansible/ansible-runner) Ansible Runner is a tool and Python library that helps when interfacing with Ansible directly or as part of another system. Ansible Runner works as a standalone tool, a container image interface, or a Python module that can be imported. The goal is to provide a stable and consistent interface abstraction to Ansible. From 8af3dae298774a0b739e2a8e2f0b71d863941b56 Mon Sep 17 00:00:00 2001 From: Andrew Klychkov Date: Tue, 10 Sep 2024 10:38:35 +0200 Subject: [PATCH 2/4] Update .github/ISSUE_TEMPLATE/bug_report.yml Co-authored-by: Don Naro --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 5bca43e64..7e6d20c21 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -11,7 +11,7 @@ body: If you are looking for community support, please visit the [Community guide](https://ansible.readthedocs.io/projects/runner/en/latest/community/) - for information how to reach out to us. + for information on how to get in touch. - type: input label: Ansible Runner version From 5d1770baaad637e3b39bf1ef13865c46abcff668 Mon Sep 17 00:00:00 2001 From: Andrew Klychkov Date: Tue, 10 Sep 2024 10:38:40 +0200 Subject: [PATCH 3/4] Update .github/ISSUE_TEMPLATE/documentation_report.yml Co-authored-by: Don Naro --- .github/ISSUE_TEMPLATE/documentation_report.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/documentation_report.yml b/.github/ISSUE_TEMPLATE/documentation_report.yml index 3120b8096..44da83369 100644 --- a/.github/ISSUE_TEMPLATE/documentation_report.yml +++ b/.github/ISSUE_TEMPLATE/documentation_report.yml @@ -12,7 +12,7 @@ body: If you are looking for community support, please visit the [Community guide](https://ansible.readthedocs.io/projects/runner/en/latest/community/) - for information how to reach out to us. + for information on how to get in touch. - type: attributes: From 827484ff6c0c66b66beedc56ce6a0f881a1d31ed Mon Sep 17 00:00:00 2001 From: Andrew Klychkov Date: Tue, 10 Sep 2024 10:38:44 +0200 Subject: [PATCH 4/4] Update .github/ISSUE_TEMPLATE/feature_request.yml Co-authored-by: Don Naro --- .github/ISSUE_TEMPLATE/feature_request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index 91c87238b..2f8ee1b64 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -12,7 +12,7 @@ body: If you are looking for community support, please visit the [Community guide](https://ansible.readthedocs.io/projects/runner/en/latest/community/) - for information how to reach out to us. + for information on how to get in touch. - type: attributes: