diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..8cb7646 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,34 @@ +--- +name: Bug Report +about: Create a report to help us improve +title: '' +labels: 'bug' +assignees: '' +--- + + + + + + + +**Acknowledgement of Repo** + +- [ ] 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** + + +**To Reproduce** + + +**Expected behavior** + + +**Screenshots** + + + +**Additional context** + + diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..044e652 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,32 @@ +--- +name: Feature Request +about: Suggest an idea for this project +title: '' +labels: 'enhancement' +assignees: '' +--- + + + + + + + + +**Acknowledgement of Repo** + +- [ ] 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.** + + + +**Describe the solution you'd like** + + +**Describe alternatives you've considered** + + +**Additional context** + + diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..924e1fc --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,19 @@ + + + + + +**Related bugs/feature requests** + + + ++ Resolves + +**Describe the changes** + + +**Screenshots** + + +**Additional context** + diff --git a/.github/workflows/auto_assign_issues.yml b/.github/workflows/auto_assign_issues.yml new file mode 100644 index 0000000..b8d0b54 --- /dev/null +++ b/.github/workflows/auto_assign_issues.yml @@ -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" diff --git a/.github/workflows/auto_assign_prs.yml b/.github/workflows/auto_assign_prs.yml new file mode 100644 index 0000000..08b941b --- /dev/null +++ b/.github/workflows/auto_assign_prs.yml @@ -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"