From 041f6a703453f5a2adeba18a984ec1ba2100b2f3 Mon Sep 17 00:00:00 2001 From: Logan McDonald Date: Wed, 10 Aug 2022 09:54:50 -0400 Subject: [PATCH] Add epic and onboarding issue templates, cut down PR template (#31) * add two issue templates * simplify PR template --- .github/ISSUE_TEMPLATE/epic.md | 25 +++++++++++++++++++ .github/ISSUE_TEMPLATE/onboarding.md | 17 +++++++++++++ .../ISSUE_TEMPLATE/story_issue_template.md | 0 .github/pull_request_template.md | 13 ++++++++++ 4 files changed, 55 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/epic.md create mode 100644 .github/ISSUE_TEMPLATE/onboarding.md delete mode 100644 .github/ISSUE_TEMPLATE/story_issue_template.md create mode 100644 .github/pull_request_template.md diff --git a/.github/ISSUE_TEMPLATE/epic.md b/.github/ISSUE_TEMPLATE/epic.md new file mode 100644 index 000000000..04c014dc4 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/epic.md @@ -0,0 +1,25 @@ +_Put a short description of what the epic is trying to accomplish here._ + +Outcome: _Describe the outcome sought_ + +# Features + +*Foundational* + + +- [ ] #xx +- [ ] #xx + +*Next* + + +- [ ] #xx +- [ ] #xx + +# Stretch Goals + +- [ ] Foo +- [ ] Bar + +# Out of scope + \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/onboarding.md b/.github/ISSUE_TEMPLATE/onboarding.md new file mode 100644 index 000000000..7c3c79c1c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/onboarding.md @@ -0,0 +1,17 @@ +# Developer Onboarding + +Name: _Name of person being onboarded_ + +## Access + +- [ ] Add to cloud.gov org and relevant spaces as a SpaceDeveloper +```cf set-space-role cloud.account@email.gov ORG SPACE SpaceDeveloper +``` +- [ ] Add to our login.gov sandbox team (`.gov registrar poc`) via the [dashboard](https://dashboard.int.identitysandbox.gov/) + + +## Documents to Review + +- [ ] [Team Charter](https://docs.google.com/document/d/1xhMKlW8bMcxyF7ipsOYxw1SQYVi-lWPkcDHSUS6miNg/edit), in particular our Github Policy +- [ ] [Architecture Decision Records](docs/architecture/decisions) +- [ ] [Github Policy](CONTRIBUTING.md) diff --git a/.github/ISSUE_TEMPLATE/story_issue_template.md b/.github/ISSUE_TEMPLATE/story_issue_template.md deleted file mode 100644 index e69de29bb..000000000 diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 000000000..1eeef397b --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,13 @@ +# # + +## 🗣 Description ## + + + + +## 💭 Motivation and context ## + + + + + \ No newline at end of file