mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-04 15:35:10 +00:00
upvote
This commit is contained in:
parent
f3b3362660
commit
0e0347fbe2
7
.github/ISSUE_TEMPLATE/BUG_REPORT.yaml
vendored
7
.github/ISSUE_TEMPLATE/BUG_REPORT.yaml
vendored
@ -15,6 +15,7 @@ body:
|
||||
label: Severity
|
||||
description: How severe is the bug?
|
||||
options:
|
||||
- I don't know
|
||||
- Low (it can wait)
|
||||
- Medium (it should be backlogged)
|
||||
- High (it should be prioritized)
|
||||
@ -110,3 +111,9 @@ body:
|
||||
attributes:
|
||||
label: Additional Context
|
||||
description: Please add any other infos that could be useful.
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: |
|
||||
## Vote for this issue
|
||||
If you come accross this issue and would like to see it taken care of, please vote with a thumbs up 👍.
|
||||
If you have any additional thoughts or use cases, please leave a comment.
|
9
.github/ISSUE_TEMPLATE/enhancement.yaml
vendored
9
.github/ISSUE_TEMPLATE/enhancement.yaml
vendored
@ -13,10 +13,13 @@ body:
|
||||
label: Urgency
|
||||
description: How urgent is this proposal?
|
||||
options:
|
||||
- I don't know
|
||||
- Low (it can wait)
|
||||
- Medium (it should be backlogged)
|
||||
- High (it should be prioritized)
|
||||
- Critical (it should be worked on immediately)
|
||||
validations:
|
||||
required: true
|
||||
- type: checkboxes
|
||||
id: preflight
|
||||
attributes:
|
||||
@ -63,3 +66,9 @@ body:
|
||||
attributes:
|
||||
label: Additional Context
|
||||
description: Please add any other infos that could be useful.
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: |
|
||||
## Vote for this issue
|
||||
If you come accross this issue and would like to see it taken care of, please vote with a thumbs up 👍.
|
||||
If you have any additional thoughts or use cases, please leave a comment.
|
||||
|
7
.github/workflows/issues.yml
vendored
7
.github/workflows/issues.yml
vendored
@ -21,6 +21,13 @@ jobs:
|
||||
# to the issue
|
||||
project-url: https://github.com/orgs/zitadel/projects/2
|
||||
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}
|
||||
- name: add "thumbs up reaction
|
||||
if: ${{ github.event_name == 'issues' }}
|
||||
uses: actions/github-script@v7
|
||||
with:
|
||||
script: |
|
||||
const { issue: { number: issueNumber }, repository: { owner: { login: owner }, name: repo } } = context.payload;
|
||||
await github.reactions.createForIssue({ owner, repo, issue_number: issueNumber, content: "+1" });
|
||||
- uses: tspascoal/get-user-teams-membership@v3
|
||||
id: checkUserMember
|
||||
if: github.actor != 'dependabot[bot]'
|
||||
|
1
.github/workflows/ready_for_review.yml
vendored
1
.github/workflows/ready_for_review.yml
vendored
@ -13,6 +13,7 @@ jobs:
|
||||
|
||||
How urgent is this PR review for you? Please select one of the following levels:
|
||||
|
||||
- [ ] I don't know
|
||||
- [ ] Low (shoud be reviewed on best effort)
|
||||
- [ ] Medium (should be reviewed within 14 days)
|
||||
- [ ] High (should be reviewed within 2 days)
|
||||
|
Loading…
Reference in New Issue
Block a user