Skip to content

Commit 4cb7940

Browse files
committed
#1 Added Community artifacts
1 parent 45709cd commit 4cb7940

32 files changed

+1285
-0
lines changed

.dockerignore

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
.github/
2+
docs/
3+
.DS_Store
4+
.gitignore
5+
.project
6+
.pydevproject
7+
CHANGELOG.md
8+
CODE_OF_CONDUCT.md
9+
CONTRIBUTING.md
10+
docker-compose.test.yml
11+
LICENSE
12+
Makefile
13+
PULL_REQUEST_TEMPLATE.md
14+
README.md

.github/CODEOWNERS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Default code owner
2+
3+
* @Senzing/senzing-community

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
5+
---
6+
7+
**Describe the bug**
8+
A clear and concise description of what the bug is.
9+
10+
**To Reproduce**
11+
Steps to reproduce the behavior:
12+
13+
1. Go to '...'
14+
2. Click on '....'
15+
3. Scroll down to '....'
16+
4. See error
17+
18+
**Expected behavior**
19+
A clear and concise description of what you expected to happen.
20+
21+
**Screenshots**
22+
If applicable, add screenshots to help explain your problem.
23+
24+
**Desktop (please complete the following information):**
25+
26+
- OS: [e.g. iOS]
27+
- Browser [e.g. chrome, safari]
28+
- Version [e.g. 22]
29+
30+
**Smartphone (please complete the following information):**
31+
32+
- Device: [e.g. iPhone6]
33+
- OS: [e.g. iOS8.1]
34+
- Browser [e.g. stock browser, safari]
35+
- Version [e.g. 22]
36+
37+
**Additional context**
38+
Add any other context about the problem here.
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
name: Documentation request
3+
about: Identify an area for improvement in documentation
4+
5+
---
6+
7+
**What is the URL of the documentation?**
8+
9+
- **Example:** https://github.com/Senzing/template-docker#external-database
10+
- *Note:* This URL includes the web page and the section of the documentation.
11+
12+
**What can be improved?**
13+
14+
A clear and concise description of what can be improved.
15+
Examples:
16+
17+
- "I don't understand where the ${XYZ} variable is set."
18+
- "There seems to be a step missing between 'X' and 'Z'. I don't know how to get to 'Z'."
19+
- "When I run `command sub-command ...` I get the following error:"
20+
- "I don't know what is meant by 'gerble barb gazoink` in the instructions".
21+
22+
**Additional context**
23+
24+
Add any other context or screenshots to help describe the documentation improvement.
25+
If you think the documentation improvement is operating system specific,
26+
please indicate which operating system is being used.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
5+
---
6+
7+
**Is your feature request related to a problem? Please describe.**
8+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
9+
10+
**Describe the solution you'd like**
11+
A clear and concise description of what you want to happen.
12+
13+
**Describe alternatives you've considered**
14+
A clear and concise description of any alternative solutions or features you've considered.
15+
16+
**Additional context**
17+
Add any other context or screenshots about the feature request here.

.github/dependabot.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Please see the documentation for all configuration options:
2+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
3+
4+
version: 2
5+
updates:
6+
- package-ecosystem: "github-actions"
7+
directory: "/"
8+
schedule:
9+
interval: "daily"
10+
- package-ecosystem: "docker"
11+
directory: "/"
12+
schedule:
13+
interval: "daily"
14+
- package-ecosystem: "pip"
15+
directory: "/"
16+
schedule:
17+
interval: "daily"
Binary file not shown.
Binary file not shown.
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Based on
2+
# - https://github.com/srggrs/assign-one-project-github-action
3+
4+
name: add-dependabot-request-to-project-t-comm.yaml
5+
on:
6+
pull_request:
7+
types:
8+
- opened
9+
- reopened
10+
env:
11+
GITHUB_TOKEN: ${{ secrets.SENZING_GITHUB_ACCESS_TOKEN }}
12+
CREATOR: ${{ github.event.pull_request.user.login }}
13+
jobs:
14+
assign_one_project:
15+
name: Add dependabot pull request to Senzing Community project
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: Assign pull request to project
19+
env:
20+
BOOL: ${{ contains( env.CREATOR, 'dependabot' ) }}
21+
uses: Senzing/github-action-add-issue-to-project@main
22+
if: ${{ env.BOOL == 'true' }}
23+
with:
24+
project: 'https://github.com/orgs/Senzing/projects/2'
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Based on
2+
# - https://github.com/srggrs/assign-one-project-github-action
3+
4+
name: add-issue-to-project-t-comm.yaml
5+
on:
6+
issues:
7+
types:
8+
- reopened
9+
- opened
10+
env:
11+
GITHUB_TOKEN: ${{ secrets.SENZING_GITHUB_ACCESS_TOKEN }}
12+
jobs:
13+
assign_one_project:
14+
name: Add issue to Senzing Community project
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Assign issue to project
18+
uses: Senzing/github-action-add-issue-to-project@main
19+
with:
20+
project: 'https://github.com/orgs/Senzing/projects/2'
21+
column_name: 'Backlog'

0 commit comments

Comments
 (0)