Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,12 +121,10 @@ version 2.1, available at
Community Impact Guidelines were inspired by
[Mozilla's code of conduct enforcement ladder][Mozilla CoC].

For answers to common questions about this code of conduct, see the FAQ at
[https://www.contributor-covenant.org/faq][FAQ]. Translations are available
Translations are available
at [https://www.contributor-covenant.org/translations][translations].

[homepage]: https://www.contributor-covenant.org
[v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct
[Mozilla CoC]: https://github.com/mozilla/diversity
[FAQ]: https://www.contributor-covenant.org/faq
[translations]: https://www.contributor-covenant.org/translations
3 changes: 0 additions & 3 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,3 @@ In order to streamline the review of your contribution we ask that you review an
- [ ] If you are adding a dependency, please explain how it was chosen.
- [ ] If manual testing is needed in order to validate the changes, provide a testing plan and the expected results.
- [ ] Validate that documentation is accurate and aligned to any project updates or additions.

Don't forget our more detailed contribution guidelines
[here](https://github.com/SeisoLLC/operations/blob/main/documents/software-guidelines.md#contributing-to-a-repository).
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
repos:
- repo: https://github.com/seisollc/goat
rev: 08d04d273cf7b18acd882820c866766d5ecb3c22 # frozen: v2024.10.01
rev: 7340d150013552d3684eec3ddfec56e260abd89f # frozen: v2026.02.05
hooks:
- id: seiso-lint
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

To contribute to this project, please fork the repository and open a pull request with your changes.

Also, see our Contributors Code of Conduct [here](./.github/CONTRIBUTING.md).
Also, see our Contributors Code of Conduct here: [./.github/CONTRIBUTING.md](./.github/CONTRIBUTING.md).

## Updating the dependencies

Expand All @@ -25,7 +25,7 @@ task -v build
```

If you're troubleshooting a `goat` failure (you aren't the first one), you can pass one of the log levels as defined
[here](https://github.com/SeisoLLC/goat#debugging):
here: [https://github.com/SeisoLLC/goat#debugging](https://github.com/SeisoLLC/goat#debugging)

```bash
task lint -- debug
Expand Down
1,174 changes: 722 additions & 452 deletions Pipfile.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ git remote add origin git@github.com:SeisoLLC/$(basename $(pwd)).git
git push origin $(git branch --show-current) --follow-tags
```

After you've pushed the initial commit, you should setup your repository settings - such as setting a branch policy, enabling dependabot, adding docker hub
After you've pushed the initial commit, you should setup your repository settings - such as setting a branch policy, enabling dependabot, adding Docker hub
secrets, etc.

This can be done via Infrastructure as Code (IaC) or manually, but ostensibly at this point your repository is aligned with your organizational practices. If
Expand Down Expand Up @@ -69,7 +69,7 @@ Currently this project only supports projects hosted on GitHub.

## FAQs

Q: Why am I getting `invalid reference format: repository name must be lowercase` when I try to build my docker container?<br />
Q: Why am I getting `invalid reference format: repository name must be lowercase` when I try to build my Docker container?<br />
A: You customized the `project_slug` when answering the `cookiecutter` questions and included a capital letter. Don't do that!

Q: What does `SemVer-ish` mean?<br />
Expand Down
12 changes: 6 additions & 6 deletions Taskfile.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
# https://taskfile.dev

version: '3'
version: "3"

set:
- nounset
Expand All @@ -21,9 +21,9 @@ includes:
internal: true
optional: true
vars:
INPUT_EXCLUDE: '{{.INPUT_EXCLUDE}}'
PYTHON_VERSION: '{{.PYTHON_VERSION}}'
VERSION: '{{.VERSION}}'
INPUT_EXCLUDE: "{{.INPUT_EXCLUDE}}"
PYTHON_VERSION: "{{.PYTHON_VERSION}}"
VERSION: "{{.VERSION}}"

silent: true

Expand All @@ -46,7 +46,7 @@ tasks:
status:
# don't update submodules if you aren't in a git repository; quote to avoid yaml intrepretering the ! as a node tag
# https://yaml.org/spec/1.2.2/#691-node-tags
- '! test -d .git'
- "! test -d .git"
cmds:
- git submodule update --init

Expand All @@ -58,7 +58,7 @@ tasks:
status:
# Don't install the pre-commit hooks if you aren't in a git repository; quote to avoid yaml intrepretering the ! as a node tag
# https://yaml.org/spec/1.2.2/#691-node-tags
- '! test -d .git'
- "! test -d .git"
cmds:
# Don't run this in pipelines
- '{{if ne .GITHUB_ACTIONS "true"}}pipenv run pre-commit install{{else}}echo "Detected a github actions pipeline; skipping the pre-commit install"{{end}}'
Expand Down
2 changes: 1 addition & 1 deletion goat
Original file line number Diff line number Diff line change
Expand Up @@ -121,12 +121,10 @@ version 2.1, available at
Community Impact Guidelines were inspired by
[Mozilla's code of conduct enforcement ladder][Mozilla CoC].

For answers to common questions about this code of conduct, see the FAQ at
[https://www.contributor-covenant.org/faq][FAQ]. Translations are available
Translations are available
at [https://www.contributor-covenant.org/translations][translations].

[homepage]: https://www.contributor-covenant.org
[v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct
[Mozilla CoC]: https://github.com/mozilla/diversity
[FAQ]: https://www.contributor-covenant.org/faq
[translations]: https://www.contributor-covenant.org/translations
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,3 @@ In order to streamline the review of your contribution we ask that you review an
- [ ] If you are adding a dependency, please explain how it was chosen.
- [ ] If manual testing is needed in order to validate the changes, provide a testing plan and the expected results.
- [ ] Validate that documentation is accurate and aligned to any project updates or additions.

Don't forget our more detailed contribution guidelines
[here](https://github.com/SeisoLLC/operations/blob/main/documents/software-guidelines.md#contributing-to-a-repository).
2 changes: 1 addition & 1 deletion {{cookiecutter.project_name|replace(" ", "")}}/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ task -v build
```

If you're troubleshooting a `goat` failure (you aren't the first one), you can pass one of the log levels as defined
[here](https://github.com/SeisoLLC/goat#debugging):
here: [https://github.com/SeisoLLC/goat#debugging](https://github.com/SeisoLLC/goat#debugging):

```bash
task lint -- debug
Expand Down
Loading