Skip to content

Commit b76bac5

Browse files
authored
Merge pull request #3 from agntcy/update-repo-configs
chore: Updated to remove templating and localize repo information.
2 parents baee1ec + 3e9943d commit b76bac5

14 files changed

+76
-379
lines changed

Diff for: .github/CODEOWNERS

+1-11
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
####################################################
2-
#
3-
# List of approvers for <project-name> project
4-
#
5-
#####################################################
6-
#
71
# Learn about CODEOWNERS file format:
82
# https://help.github.com/en/articles/about-code-owners
93
#
@@ -12,8 +6,4 @@
126
# the repository. Unless a later match takes precedence,
137
# the following users/teams will be requested for
148
# review when someone opens a pull request.
15-
* @agntcy/<maintainer-team-name>
16-
17-
# Enforces admin protections for repo configuration via probot settings app.
18-
# ref: https://github.com/probot/settings#security-implications
19-
.github/settings.yml @agntcy/<admin-team-name>
9+
* @CostaRegi @jnapper7

Diff for: .github/ISSUE_TEMPLATE/bug_report.yml

+2-5
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,7 @@ body:
3030
If applicable, provide the version number or release tag where this
3131
issue was encountered
3232
options:
33-
- v1.0.0
34-
- v1.0.1
35-
- v1.0.2
36-
- v1.0.3
33+
- v0.0.1
3734
default: 0
3835
validations:
3936
required: false
@@ -55,7 +52,7 @@ body:
5552
label: Checklist
5653
description: By submitting this issue, you agree to the following
5754
options:
58-
- label: I have read the [contributing guidelines](/agntcy/repo-template/blob/main/CONTRIBUTING.md)
55+
- label: I have read the [contributing guidelines](/agntcy/iomapper-agnt/blob/main/CONTRIBUTING.md)
5956
required: true
6057
- label: I have verified this does not duplicate an existing issue
6158
required: true

Diff for: .github/ISSUE_TEMPLATE/feature_request.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ body:
4848
label: Checklist
4949
description: By submitting this request, you agree to the following
5050
options:
51-
- label: I have read the [contributing guidelines](/agntcy/repo-template/blob/main/CONTRIBUTING.md)
51+
- label: I have read the [contributing guidelines](/agntcy/iomapper-agnt/blob/main/CONTRIBUTING.md)
5252
required: true
5353
- label: |
5454
I have verified this does not duplicate an existing feature request

Diff for: .github/linters/.markdownlint.yml

-43
This file was deleted.

Diff for: .github/linters/.yamllint.yml

-11
This file was deleted.

Diff for: .github/pull_request_template.md

+1-28
Original file line numberDiff line numberDiff line change
@@ -1,28 +1 @@
1-
# Description
2-
3-
Please provide a meaningful description of what this change will do, or is for.
4-
Bonus points for including links to related issues, other PRs, or technical
5-
references.
6-
7-
Note that by _not_ including a description, you are asking reviewers to do extra
8-
work to understand the context of this change, which may lead to your PR taking
9-
much longer to review, or result in it not being reviewed at all.
10-
11-
## Type of Change
12-
13-
- [ ] Bugfix
14-
- [ ] New Feature
15-
- [ ] Breaking Change
16-
- [ ] Refactor
17-
- [ ] Documentation
18-
- [ ] Other (please describe)
19-
20-
## Checklist
21-
22-
- [ ] I have read the [contributing guidelines](/agntcy/repo-template/blob/main/CONTRIBUTING.md)
23-
- [ ] Existing issues have been referenced (where applicable)
24-
- [ ] I have verified this change is not present in other open pull requests
25-
- [ ] Functionality is documented
26-
- [ ] All code style checks pass
27-
- [ ] New code contribution is covered by automated tests
28-
- [ ] All new and existing tests pass
1+
Please provide a meaningful description of what this change will do, or is for.

Diff for: .github/settings.yml

-119
This file was deleted.

Diff for: .github/workflows/lint.yml

-41
This file was deleted.

Diff for: .gitignore

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# Environments
7+
.env*
8+
.venv
9+
env/
10+
venv/
11+
ENV/
12+
env.bak/
13+
venv.bak/
14+
15+
# mypy
16+
.mypy_cache/
17+
.dmypy.json
18+
dmypy.json
19+
20+
.vscode/
21+
.idea/
22+
23+
# misc
24+
.DS_Store

Diff for: CODE_OF_CONDUCT.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ representative at an online or offline event.
6060

6161
Instances of abusive, harassing, or otherwise unacceptable behavior may be
6262
reported to the community leaders responsible for enforcement at
63-
<INSERT_CONTACT_METHOD>. All complaints will be reviewed and investigated
63+
[[email protected]](mailto:[email protected]). All complaints will be reviewed and investigated
6464
promptly and fairly.
6565

6666
All community leaders are obligated to respect the privacy and security of the

Diff for: CONTRIBUTING.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# How to Contribute
22

3-
Thanks for your interest in contributing to `<project name>`! Here are a few
3+
Thanks for your interest in contributing to IO-Mapper Agent project! Here are a few
44
general guidelines on contributing and reporting bugs that we ask you to review.
55
Following these guidelines helps to communicate that you respect the time of the
66
contributors managing and developing this open source project. In return, they
@@ -18,7 +18,7 @@ in any real-time space e.g., Slack, Discord, etc.
1818

1919
Before reporting a new issue, please ensure that the issue was not already
2020
reported or fixed by searching through our [issues
21-
list](https://github.com/org_name/repo_name/issues).
21+
list](https://github.com/agntcy/iomapper-agnt/issues).
2222

2323
When creating a new issue, please be sure to include a **title and clear
2424
description**, as much relevant information as possible, and, if possible, a
@@ -39,20 +39,20 @@ major version release.
3939

4040
## Other Ways to Contribute
4141

42-
We welcome anyone that wants to contribute to `<project name>` to triage and
42+
We welcome anyone that wants to contribute to this project to triage and
4343
reply to open issues to help troubleshoot and fix existing bugs. Here is what
4444
you can do:
4545

4646
- Help ensure that existing issues follows the recommendations from the
4747
_[Reporting Issues](#reporting-issues)_ section, providing feedback to the
4848
issue's author on what might be missing.
4949
- Review and update the existing content of our
50-
[Wiki](https://github.com/org_name/repo_name/wiki) with up-to-date
50+
[Wiki](https://github.com/agntcy/iomapper-agnt/wiki) with up-to-date
5151
instructions and code samples.
5252
- Review existing pull requests, and testing patches against real existing
53-
applications that use `<project name>`.
53+
applications that use the project.
5454
- Write a test, or add a missing test case to an existing test.
5555

56-
Thanks again for your interest on contributing to `<project name>`!
56+
Thanks again for your interest on contributing!
5757

5858
:heart:

Diff for: MAINTAINERS.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# Maintainers
22

3-
- [GitHub Username](https://github.com/username)
4-
- [GitHub Username](https://github.com/username)
5-
- [GitHub Username](https://github.com/username)
3+
- [Jeff Napper](https://github.com/jnapper7)
4+
- [Reginaldo Costa](https://github.com/CostaRegi)

0 commit comments

Comments
 (0)