Skip to content
Open
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
34 changes: 34 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
---
name: Bug Report
about: Create a report to help us improve
title: ''
labels: 'bug'
assignees: ''
---

<!-- Thanks for taking the time to report a bug! Please fill in the following. -->
<!-- We'll be in touch if we need any other information. -->
<!-- Once submitted, follow this issue's progress on the project board. -->
<!-- Notes like this are comments and won't appear in the report. -->
<!-- WARNING: Make sure no sensitive info is included! -->

**Acknowledgement of Repo**
<!-- Check the box below to confirm -->
- [ ] I understand that Issues filed in this repo are only for the [https://spike-2.github.io](https://spike-2.github.io) site. Issues for the Spike bot itself should be filed [here](https://github.com/spike-2/Spike-2/issues/new/choose).

**Describe the bug**
<!-- A clear, concise description of the bug -->

**To Reproduce**
<!-- Steps to reproduce the bug -->

**Expected behavior**
<!-- A clear, concise description of what you expect to happen -->

**Screenshots**
<!-- If applicable, add screenshots to help explain your problem -->
<!-- WARNING: Make sure no sensitive info is included! -->

**Additional context**
<!-- Add any other context about the problem here -->
<!-- WARNING: Make sure no sensitive info is included! -->
32 changes: 32 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
name: Feature Request
about: Suggest an idea for this project
title: ''
labels: 'enhancement'
assignees: ''
---

<!-- Thanks for taking the time to request a feature! Please fill in the following. -->
<!-- If this relates to a bug you've found, please file a Bug Report instead. -->
<!-- We'll be in touch if we need any other information. -->
<!-- Once submitted, follow this issue's progress on the project board. -->
<!-- Notes like this are comments and won't appear in the report. -->
<!-- WARNING: Make sure no sensitive info is included! -->

**Acknowledgement of Repo**
<!-- Check the box below to confirm -->
- [ ] I understand that Issues filed in this repo are only for the [https://spike-2.github.io](https://spike-2.github.io) site. Issues for the Spike bot itself should be filed [here](https://github.com/spike-2/Spike-2/issues/new/choose).

**Is your feature request related to a problem? Please describe.**
<!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] -->
<!-- If this relates to a bug you've found, please file a Bug Report instead. -->

**Describe the solution you'd like**
<!-- A clear and concise description of what you want to happen. -->

**Describe alternatives you've considered**
<!-- A clear and concise description of any alternative solutions or features you've considered. -->

**Additional context**
<!-- Add any other context or screenshots about the feature request here. -->
<!-- WARNING: Make sure no sensitive info is included! -->
19 changes: 19 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<!-- Thanks for taking the time to work on a patch! Please fill in the following. -->
<!-- We'll be in touch if we need any other information. -->
<!-- Once submitted, follow this PR's progress on the project board. -->
<!-- Notes like this are comments and won't appear in the PR. -->

**Related bugs/feature requests**
<!-- e.g. Resolves #2 -->
<!-- e.g. Resolves Spike-2/#23 -->
<!-- New bullet point for each issue if there's more than one. -->
+ Resolves

**Describe the changes**
<!-- A clear, concise description of the changes. -->

**Screenshots**
<!-- If applicable, add screenshots to help explain your fix. -->

**Additional context**
<!-- Add any other context about the PR here. -->
19 changes: 19 additions & 0 deletions .github/workflows/auto_assign_issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Auto Assign Issues to Project

on:
issues:
types: [opened]

jobs:
assign_one_project:
runs-on: ubuntu-latest
name: Assign to One Project
steps:
- name: Assign new issues to project
uses: leonsteinhaeuser/project-beta-automations@v1.0.3
with:
gh_token: ${{ secrets.PROJECT_ACCESS_TOKEN }}
organization: spike-2
project_id: 1
resource_node_id: ${{ github.event.issue.node_id }}
status_value: "Idea"
19 changes: 19 additions & 0 deletions .github/workflows/auto_assign_prs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Auto Assign PRs to Project

on:
pull_request:
types: [opened]

jobs:
assign_one_project:
runs-on: ubuntu-latest
name: Assign to One Project
steps:
- name: Assign new pull requests to project
uses: leonsteinhaeuser/project-beta-automations@v1.0.3
with:
gh_token: ${{ secrets.PROJECT_ACCESS_TOKEN }}
organization: spike-2
project_id: 1
resource_node_id: ${{ github.event.pull_request.node_id }}
status_value: "Needs Review"