Skip to content

Commit 4719f3f

Browse files
authored
Merge pull request #2 from Senzing/1-skern
#1 Initial content
2 parents 48f3bba + d33bc29 commit 4719f3f

19 files changed

+681
-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: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Default code owner
2+
3+
* @Senzing/senzing-community
4+
5+
/.github/ @Senzing/senzing-devsecops

.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"

.github/linters/.checkov.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
quiet: true
2+
skip-check: CKV_DOCKER_7

.github/linters/.jscpd.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"threshold": 32
3+
}
Binary file not shown.
Binary file not shown.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: add labels standardized
2+
3+
on:
4+
issues:
5+
types:
6+
- opened
7+
- reopened
8+
9+
permissions:
10+
issues: write
11+
12+
jobs:
13+
add-issue-labels:
14+
secrets:
15+
ORG_MEMBERSHIP_TOKEN: ${{ secrets.ORG_MEMBERSHIP_TOKEN }}
16+
SENZING_MEMBERS: ${{ secrets.SENZING_MEMBERS }}
17+
uses: senzing-factory/build-resources/.github/workflows/add-labels-to-issue.yaml@v2
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: add to project senzing github organization dependabot
2+
3+
on:
4+
pull_request:
5+
branches: [main]
6+
7+
permissions:
8+
repository-projects: write
9+
10+
jobs:
11+
add-to-project-dependabot:
12+
secrets:
13+
SENZING_GITHUB_PROJECT_RW_TOKEN: ${{ secrets.SENZING_GITHUB_PROJECT_RW_TOKEN }}
14+
uses: senzing-factory/build-resources/.github/workflows/add-to-project-dependabot.yaml@v2
15+
with:
16+
project: ${{ vars.SENZING_GITHUB_ORGANIZATION_PROJECT }}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: add to project senzing github organization
2+
3+
on:
4+
issues:
5+
types:
6+
- opened
7+
- reopened
8+
9+
permissions:
10+
repository-projects: write
11+
12+
jobs:
13+
add-to-project:
14+
secrets:
15+
SENZING_GITHUB_PROJECT_RW_TOKEN: ${{ secrets.SENZING_GITHUB_PROJECT_RW_TOKEN }}
16+
uses: senzing-factory/build-resources/.github/workflows/add-to-project.yaml@v2
17+
with:
18+
classic: false
19+
project-number: ${{ vars.SENZING_GITHUB_ORGANIZATION_PROJECT }}
20+
org: ${{ vars.SENZING_GITHUB_ACCOUNT_NAME }}

0 commit comments

Comments
 (0)