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
2 changes: 1 addition & 1 deletion .markdown_link_check_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"pattern": "cookiecutter.repository_url"
},
{
"pattern": "^https://github.com/arup-group"
"pattern": "^https://github.com/renefritze"
}
]
}
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ repos:
- id: ruff-format
# The markdown-link-check can't access internal or private repos, see
# .markdown_link_check_config.json on how to exclude more than the
# github.com/arup-group
# github.com/renefritze
- repo: https://github.com/tcort/markdown-link-check
rev: v3.11.2
hooks:
Expand Down
5 changes: 3 additions & 2 deletions cookiecutter.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@
"author": "FirstName OtherNames LastName",
"firstname": "{{cookiecutter.author.split(' ')[0]}}",
"lastname": "{{cookiecutter.author.split(' ')[-1]}}",
"email": "{{cookiecutter.firstname.lower()}}.{{cookiecutter.lastname.lower()}}@arup.com",
"email": "{{cookiecutter.firstname.lower()}}.{{cookiecutter.lastname.lower()}}@example.com",
"project_slug": "The name of your package",
"__module_name": "{{cookiecutter.project_slug.replace('-', '_')}}",
"repository_url": "https://github.com/arup-group/{{cookiecutter.project_slug}}",
"github_owner": "renefritze",
"repository_url": "https://github.com/{{cookiecutter.github_owner}}/{{cookiecutter.project_slug}}",
"create_git_repository": "yes",
"short_description": "One-liner to describe the package",
"minimum_python_version": "3.10",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"__comment__": "https://github.com/tcort/markdown-link-check#config-file-format",
"ignorePatterns": [
{
"pattern": "^https://github.com/arup-group"
"pattern": "^https://github.com/{{cookiecutter.github_owner}}"
}
]
}
2 changes: 1 addition & 1 deletion {{cookiecutter.project_slug}}/.pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ repos:
- id: ruff-format
# The markdown-link-check can't access internal or private repos, see
# .markdown_link_check_config.json on how to exclude more than the
# github.com/arup-group
# github.com/{{cookiecutter.github_owner}}
- repo: https://github.com/tcort/markdown-link-check
rev: v3.11.2
hooks:
Expand Down
2 changes: 1 addition & 1 deletion {{cookiecutter.project_slug}}/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ After generating your project

- setup branch protection+automerge in [github project settings]({{cookiecutter.repository_url}}/settings/branches)
- request install for the codecov.io app in [github project settings]({{cookiecutter.repository_url}}/settings/installations)
- configure codecov.io in [codecov.io settings](https://codecov.io/gh/arup-group/cookiecutter.project_slug}}/settings)
- configure codecov.io in [codecov.io settings](https://codecov.io/gh/{{cookiecutter.github_owner}}/{{cookiecutter.project_slug}}/settings)
- add the `CODECOV_TOKEN` secret in [github project settings]({{cookiecutter.repository_url}}/settings/secrets/actions)


Expand Down
Loading