From 80b79a97f0707b2a549828f5fecf4a05e9208cf6 Mon Sep 17 00:00:00 2001 From: Alex Thomas Date: Wed, 20 Nov 2024 15:32:20 +0000 Subject: [PATCH] Addes a changelog, a PR template, and config for the Codium PR agent (#9) --- .github/pull_request_template.md | 34 ++++++++++++++++++++++++++++++++ CHANGELOG.md | 9 +++++++++ pr_agent.toml | 13 ++++++++++++ 3 files changed, 56 insertions(+) create mode 100644 .github/pull_request_template.md create mode 100644 CHANGELOG.md create mode 100644 pr_agent.toml diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..362d315 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,34 @@ +# Description + +> **Note** +> +> Please provide a description of the work completed in this PR +> +> + +## Type of Change + +- [ ] New feature +- [ ] Bug fix +- [ ] Breaking change +- [ ] Project configuration change + +## Complexity + +> **Note** +> +> Please provide an estimated complexity of this PR of either Low, Medium or High +> +> + +## How Has This Been Tested? + +- [ ] Unit tests +- [ ] Integration tests +- [ ] Manual tests + +## Checklist + +- [ ] Unit tests updated +- [ ] Integration tests updated +- [ ] CHANGELOG.md updated diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..71cbe95 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,9 @@ +# Changelog + +## Next + +## 0.1.0 + +### Added + +- Migrated all Neo4j-related code, including tests and integration tests, from the LangChain Community package to this package. diff --git a/pr_agent.toml b/pr_agent.toml new file mode 100644 index 0000000..86057c4 --- /dev/null +++ b/pr_agent.toml @@ -0,0 +1,13 @@ +[pr_update_changelog] +extra_instructions=""" + The current date is unimportant for the output. Do not use the current date. + + Instead, make a recommendation to the user based on this example: + + ### Added + ... + ### Changed + ... + ### Fixed + ... +"""