diff options
Diffstat (limited to 'third_party/python/glean_parser/.github')
3 files changed, 29 insertions, 0 deletions
diff --git a/third_party/python/glean_parser/.github/ISSUE_TEMPLATE.md b/third_party/python/glean_parser/.github/ISSUE_TEMPLATE.md new file mode 100644 index 0000000000..ac2c091d74 --- /dev/null +++ b/third_party/python/glean_parser/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,15 @@ +* Glean Parser version: +* Python version: +* Operating System: + +### Description + +Describe what you were trying to get done. +Tell us what happened, what went wrong, and what you expected to happen. + +### What I Did + +``` +Paste the command(s) you ran and the output. +If there was a crash, please include the traceback here. +``` diff --git a/third_party/python/glean_parser/.github/dependabot.yml b/third_party/python/glean_parser/.github/dependabot.yml new file mode 100644 index 0000000000..b38df29f46 --- /dev/null +++ b/third_party/python/glean_parser/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: "pip" + directory: "/" + schedule: + interval: "daily" diff --git a/third_party/python/glean_parser/.github/pull_request_template.md b/third_party/python/glean_parser/.github/pull_request_template.md new file mode 100644 index 0000000000..0a47d59fdf --- /dev/null +++ b/third_party/python/glean_parser/.github/pull_request_template.md @@ -0,0 +1,8 @@ +### Pull Request checklist ### +<!-- Before submitting the PR, please address each item --> +- [ ] **Quality**: This PR builds and tests run cleanly + - `make test` runs without emitting any warnings + - `make lint` runs without emitting any errors +- [ ] **Tests**: This PR includes thorough tests or an explanation of why it does not +- [ ] **Changelog**: This PR includes a changelog entry to `HISTORY.rst` or an explanation of why it does not need one + - Any breaking changes to language binding APIs are noted explicitly |