Skip to content

Commit 8a2ec26

Browse files
authored
Merge pull request #91 from github/jm-issue-templates
docs: add github issue templates
2 parents 04ad5c7 + d72ce67 commit 8a2ec26

File tree

6 files changed

+100
-7
lines changed

6 files changed

+100
-7
lines changed

.env-example

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
11
GH_TOKEN = " "
22
ORGANIZATION = "organization"
3+
4+
# GITHUB APP
5+
GH_APP_ID = ""
6+
GH_INSTALLATION_ID = ""
7+
GH_PRIVATE_KEY = ""

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
---
2+
name: Bug report
3+
description: Create a report to help us improve
4+
labels:
5+
- bug
6+
body:
7+
- type: textarea
8+
attributes:
9+
label: Describe the bug
10+
description: A clear and concise description of what the bug is.
11+
validations:
12+
required: true
13+
14+
- type: textarea
15+
attributes:
16+
label: To Reproduce
17+
description: Steps to reproduce the behavior
18+
placeholder: |
19+
1. Go to '...'
20+
2. Click on '....'
21+
3. Scroll down to '....'
22+
4. See error
23+
validations:
24+
required: true
25+
26+
- type: textarea
27+
attributes:
28+
label: Expected behavior
29+
description: A clear and concise description of what you expected to happen.
30+
validations:
31+
required: true
32+
33+
- type: textarea
34+
attributes:
35+
label: Screenshots
36+
description: If applicable, add screenshots to help explain your problem.
37+
validations:
38+
required: false
39+
40+
- type: textarea
41+
attributes:
42+
label: Additional context
43+
description: Add any other context about the problem here.
44+
validations:
45+
required: false

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
blank_issues_enabled: false
2+
3+
contact_links:
4+
- name: Ask a question
5+
url: https://github.com/github/evergreen/discussions/new
6+
about: Ask a question or start a discussion
7+
- name: GitHub OSPO GitHub Action Overall Issue
8+
url: https://github.com/github/github-ospo/issues/new
9+
about: File issue for multiple GitHub OSPO GitHub Actions
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
name: Feature request
3+
description: Suggest an idea for this project
4+
labels:
5+
- enhancement
6+
body:
7+
- type: textarea
8+
attributes:
9+
label: Is your feature request related to a problem?
10+
description: A clear and concise description of what the problem is. Please describe.
11+
placeholder: |
12+
Ex. I'm always frustrated when [...]
13+
validations:
14+
required: false
15+
16+
- type: textarea
17+
attributes:
18+
label: Describe the solution you'd like
19+
description: A clear and concise description of what you want to happen.
20+
validations:
21+
required: true
22+
23+
- type: textarea
24+
attributes:
25+
label: Describe alternatives you've considered
26+
description: A clear and concise description of any alternative solutions or features you've considered.
27+
validations:
28+
required: false
29+
30+
- type: textarea
31+
attributes:
32+
label: Additional context
33+
description: Add any other context or screenshots about the feature request here.
34+
validations:
35+
required: false

.github/dependabot.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,8 @@
11
---
2-
# To get started with Dependabot version updates, you'll need to specify which
3-
# package ecosystems to update and where the package manifests are located.
4-
# Please see the documentation for all configuration options:
5-
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
6-
72
version: 2
83
updates:
9-
- package-ecosystem: "pip" # See documentation for possible values
10-
directory: "/" # Location of package manifests
4+
- package-ecosystem: "pip"
5+
directory: "/"
116
schedule:
127
interval: "daily"
138
- package-ecosystem: "github-actions"

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ This action was developed by the GitHub OSPO for our own use and developed in a
1717

1818
If you need support using this project or have questions about it, please [open up an issue in this repository](https://github.com/github/evergreen/issues). Requests made directly to GitHub staff or support team will be redirected here to open an issue. GitHub SLA's and support/services contracts do not apply to this repository.
1919

20+
### OSPO GitHub Actions as a Whole
21+
22+
All feedback regarding our GitHub Actions, as a whole, should be communicated through [issues on our github-ospo repository](https://github.com/github/github-ospo/issues/new).
23+
2024
## Use as a GitHub Action
2125

2226
1. Create a repository to host this GitHub Action or select an existing repository.

0 commit comments

Comments
 (0)