mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-04 23:45:07 +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
|
label: Severity
|
||||||
description: How severe is the bug?
|
description: How severe is the bug?
|
||||||
options:
|
options:
|
||||||
|
- I don't know
|
||||||
- Low (it can wait)
|
- Low (it can wait)
|
||||||
- Medium (it should be backlogged)
|
- Medium (it should be backlogged)
|
||||||
- High (it should be prioritized)
|
- High (it should be prioritized)
|
||||||
@ -110,3 +111,9 @@ body:
|
|||||||
attributes:
|
attributes:
|
||||||
label: Additional Context
|
label: Additional Context
|
||||||
description: Please add any other infos that could be useful.
|
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
|
label: Urgency
|
||||||
description: How urgent is this proposal?
|
description: How urgent is this proposal?
|
||||||
options:
|
options:
|
||||||
|
- I don't know
|
||||||
- Low (it can wait)
|
- Low (it can wait)
|
||||||
- Medium (it should be backlogged)
|
- Medium (it should be backlogged)
|
||||||
- High (it should be prioritized)
|
- High (it should be prioritized)
|
||||||
- Critical (it should be worked on immediately)
|
- Critical (it should be worked on immediately)
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
- type: checkboxes
|
- type: checkboxes
|
||||||
id: preflight
|
id: preflight
|
||||||
attributes:
|
attributes:
|
||||||
@ -63,3 +66,9 @@ body:
|
|||||||
attributes:
|
attributes:
|
||||||
label: Additional Context
|
label: Additional Context
|
||||||
description: Please add any other infos that could be useful.
|
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
|
# to the issue
|
||||||
project-url: https://github.com/orgs/zitadel/projects/2
|
project-url: https://github.com/orgs/zitadel/projects/2
|
||||||
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}
|
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
|
- uses: tspascoal/get-user-teams-membership@v3
|
||||||
id: checkUserMember
|
id: checkUserMember
|
||||||
if: github.actor != 'dependabot[bot]'
|
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:
|
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)
|
- [ ] Low (shoud be reviewed on best effort)
|
||||||
- [ ] Medium (should be reviewed within 14 days)
|
- [ ] Medium (should be reviewed within 14 days)
|
||||||
- [ ] High (should be reviewed within 2 days)
|
- [ ] High (should be reviewed within 2 days)
|
||||||
|
Loading…
Reference in New Issue
Block a user