Skip to content

Commit 73b3832

Browse files
authored
Update project defaults (#4)
1 parent 8ccd618 commit 73b3832

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

cookiecutter.json

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
{
2-
"full_name": "Jon Zeolla",
3-
"email": "Jon.Zeolla@SeisoLLC.com",
4-
"github_username": "jonzeolla",
5-
"codeowner": "{{ cookiecutter.github_username }}",
62
"project_name": "TODO",
73
"project_slug": "{{ cookiecutter.project_name.lower().replace(' ', '_').replace('-', '_') }}",
84
"project_short_description": "TODO",
5+
"project_owner_github_username": "jonzeolla",
96
"dockerhub": "y",
107
"versioning": ["SemVer", "CalVer"],
118
"license": ["MIT", "BSD-3", "Not open source"]
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Repository owner
2-
* @{{ cookiecutter.codeowner }}
2+
* @{{ cookiecutter.project_owner_github_username }}
33

44
# GitHub automation oversight
55
.github/* @SeisoLLC/eyes
6+
7+
# Sensitive files
8+
LICENSE @SeisoLLC/eyes
9+
SECURITY.md @SeisoLLC/eyes

{{cookiecutter.project_slug}}/.github/etc/dictionary.txt

Whitespace-only changes.

{{cookiecutter.project_slug}}/.github/workflows/commit.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Checkout the repo
1818
uses: actions/checkout@v2
1919
- name: Run the goat
20-
uses: seisollc/goat@v0.3.0
20+
uses: seisollc/goat@main
2121
- name: Setup python
2222
uses: actions/setup-python@v2
2323
with:

{{cookiecutter.project_slug}}/.github/workflows/pr.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
ref: ${{ "{{ github.event.pull_request.head.sha }}" }}
2121
- name: Run the goat
22-
uses: seisollc/goat@v0.3.0
22+
uses: seisollc/goat@main
2323
- uses: actions/setup-python@v2
2424
with:
2525
python-version: ${{ "{{ matrix.python-version }}" }}

{{cookiecutter.project_slug}}/Dockerfile

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ ENV PIP_NO_CACHE_DIR=1
88
ARG VERSION
99
ARG COMMIT_HASH
1010

11-
LABEL org.opencontainers.image.authors="{{ cookiecutter.full_name }}"
1211
LABEL org.opencontainers.image.title="{{ cookiecutter.project_name }}"
1312
LABEL org.opencontainers.image.description="{{ cookiecutter.project_short_description }}"
1413
LABEL org.opencontainers.image.version="${VERSION}"

0 commit comments

Comments
 (0)