mirror of
https://github.com/hyperspacedev/hyperspace
synced 2025-02-11 09:10:48 +01:00
Update GitHub content, disable Jira issue creation
This commit is contained in:
parent
63fc2f6b13
commit
a98a8f04fe
15
.github/ISSUE_TEMPLATE/bug_report.md
vendored
15
.github/ISSUE_TEMPLATE/bug_report.md
vendored
@ -1,10 +1,9 @@
|
|||||||
---
|
---
|
||||||
name: Bug report
|
name: Bug report
|
||||||
about: Create a report to help us improve
|
about: Create a report to help us improve
|
||||||
title: "[Bug] Issue title"
|
title: "Issue title"
|
||||||
labels: ''
|
labels: "bug"
|
||||||
assignees: ''
|
assignees: ""
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
**Describe the bug**
|
**Describe the bug**
|
||||||
@ -12,6 +11,7 @@ A clear and concise description of what the bug is.
|
|||||||
|
|
||||||
**To Reproduce**
|
**To Reproduce**
|
||||||
Steps to reproduce the behavior:
|
Steps to reproduce the behavior:
|
||||||
|
|
||||||
1. Go to '...'
|
1. Go to '...'
|
||||||
2. Click on '....'
|
2. Click on '....'
|
||||||
3. Scroll down to '....'
|
3. Scroll down to '....'
|
||||||
@ -24,9 +24,10 @@ A clear and concise description of what you expected to happen.
|
|||||||
If applicable, add screenshots to help explain your problem.
|
If applicable, add screenshots to help explain your problem.
|
||||||
|
|
||||||
**App Information (please complete the following information):**
|
**App Information (please complete the following information):**
|
||||||
- OS: [e.g. iOS]
|
|
||||||
- Browser [e.g. chrome, safari] (if applicable)
|
- OS: [e.g. iOS]
|
||||||
- Version [e.g. 22]
|
- Browser [e.g. chrome, safari] (if applicable)
|
||||||
|
- Version [e.g. 22]
|
||||||
|
|
||||||
**Additional context**
|
**Additional context**
|
||||||
Add any other context about the problem here.
|
Add any other context about the problem here.
|
||||||
|
5
.github/ISSUE_TEMPLATE/config.yml
vendored
Normal file
5
.github/ISSUE_TEMPLATE/config.yml
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
blank_issues_enabled: true
|
||||||
|
contact_links:
|
||||||
|
- name: Discord
|
||||||
|
url: "https://discord.gg/c69AXwk"
|
||||||
|
about: Chat with us here.
|
7
.github/ISSUE_TEMPLATE/feature_request.md
vendored
7
.github/ISSUE_TEMPLATE/feature_request.md
vendored
@ -1,10 +1,9 @@
|
|||||||
---
|
---
|
||||||
name: Feature request
|
name: Feature request
|
||||||
about: Suggest an idea for this project
|
about: Suggest an idea for this project
|
||||||
title: '[Request] Request title'
|
title: "Request title"
|
||||||
labels: ''
|
labels: "enhancement"
|
||||||
assignees: ''
|
assignees: ""
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
**Is your feature request related to a problem? Please describe.**
|
**Is your feature request related to a problem? Please describe.**
|
||||||
|
22
.github/PULL_REQUEST_TEMPLATE.md
vendored
22
.github/PULL_REQUEST_TEMPLATE.md
vendored
@ -1,10 +1,28 @@
|
|||||||
|
**Changes Overview**
|
||||||
This PR makes the following changes:
|
This PR makes the following changes:
|
||||||
|
|
||||||
<!-- List your changes here as a bullet list. Read the contribution guidelines for more details.-->
|
<!-- List your changes here as a bullet list. Read the contribution guidelines for more details.-->
|
||||||
|
-
|
||||||
|
-
|
||||||
|
|
||||||
|
**Does this PR fix, close, or implement any issues?**
|
||||||
|
- [ ] This PR closes, fixes, or implements the following issues.
|
||||||
|
|
||||||
|
<!-- List any issues that this pull request may close or contribute to. Make sure you follow the proper syntax for referencing an issue.
|
||||||
|
|
||||||
|
Examples:
|
||||||
|
|
||||||
|
- Implements #0
|
||||||
|
- Closes UnscriptedVN/issues#0
|
||||||
|
- Contributes to #0
|
||||||
|
-->
|
||||||
|
|
||||||
-
|
-
|
||||||
-
|
-
|
||||||
-
|
-
|
||||||
-
|
|
||||||
|
|
||||||
- [] This is a release check.
|
<!-- If the following is a release check, uncomment the following line. -->
|
||||||
|
<!-- - [x] This is a release check. -->
|
||||||
|
|
||||||
|
**Pending for review**
|
||||||
|
@hyperspacedev/desktop
|
46
.github/workflows/jira-create.yml
vendored
46
.github/workflows/jira-create.yml
vendored
@ -1,26 +1,26 @@
|
|||||||
name: Create issue on Jira
|
# name: Create issue on Jira
|
||||||
|
|
||||||
on:
|
# on:
|
||||||
issues:
|
# issues:
|
||||||
types: [opened]
|
# types: [opened]
|
||||||
|
|
||||||
jobs:
|
# jobs:
|
||||||
jira:
|
# jira:
|
||||||
runs-on: ubuntu-latest
|
# runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
# steps:
|
||||||
- name: Jira Login
|
# - name: Jira Login
|
||||||
id: login
|
# id: login
|
||||||
uses: atlassian/gajira-login@v2.0.0
|
# uses: atlassian/gajira-login@v2.0.0
|
||||||
env:
|
# env:
|
||||||
JIRA_BASE_URL: "https://hyperspacedev.atlassian.net"
|
# JIRA_BASE_URL: "https://hyperspacedev.atlassian.net"
|
||||||
JIRA_USER_EMAIL: software@marquiskurt.net
|
# JIRA_USER_EMAIL: software@marquiskurt.net
|
||||||
JIRA_API_TOKEN: ${{ secrets.JIRA_TOKEN }}
|
# JIRA_API_TOKEN: ${{ secrets.JIRA_TOKEN }}
|
||||||
- name: Jira Create issue
|
# - name: Jira Create issue
|
||||||
id: create
|
# id: create
|
||||||
uses: atlassian/gajira-create@v2.0.0
|
# uses: atlassian/gajira-create@v2.0.0
|
||||||
with:
|
# with:
|
||||||
project: HD
|
# project: HD
|
||||||
issuetype: Unsorted
|
# issuetype: Unsorted
|
||||||
summary: ${{ github.event.issue.title }}
|
# summary: ${{ github.event.issue.title }}
|
||||||
description: ${{ github.event.issue.body }}
|
# description: ${{ github.event.issue.body }}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user