Conversation
2a3ee28 to
44354b5
Compare
There was a problem hiding this comment.
Pull request overview
Adds contributor/operator documentation and updates the template’s baseline dependencies and CI configuration.
Changes:
- Added
AGENTS.mddocumenting the cookiecutter template structure and how to locally validate template changes. - Updated the generated project’s base requirements to target Django
>=5.2,<6.0. - Modified the repo root
.gitlab-ci.ymlto use a container image and a new test entrypoint script.
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| AGENTS.md | New repo guide explaining layout, generated project contents, and manual validation steps. |
| {{cookiecutter.project_slug}}/requirements/base.in | Bumps the generated project’s Django requirement range. |
| .gitlab-ci.yml | Updates the template repo’s GitLab CI job image and test command. |
Comments suppressed due to low confidence (1)
.gitlab-ci.yml:3
.gitlab-ci.ymlruns./hooks/test.sh, but there is nohooks/test.shin this repo (thehooks/dir only containspost_gen_project.py). This will make the GitLab pipeline fail immediately. Consider inlining the template smoke-test (generate with cookiecutter, install generated project's test deps, runscripts/run_tests.sh) and use the same Python version as the template (3.11) for consistency.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+8
to
+13
| tests: | ||
| runs-on: ubuntu-latest | ||
| container: ghcr.io/astral-sh/uv:python3.14-trixie | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - run: ./hooks/test.sh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.