Skip to content

Commit d63a14e

Browse files
authored
Merge branch 'master' into replyBug
2 parents b947d8d + c44a244 commit d63a14e

File tree

6 files changed

+146
-36
lines changed

6 files changed

+146
-36
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 0 additions & 34 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
name: Bug Report
3+
about: Report a bug or unexpected behavior
4+
title: "[Bug] "
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
## Bug Description
11+
A clear and concise description of what the bug is.
12+
13+
### Steps to Reproduce
14+
Steps to reproduce the behavior:
15+
1. Go to '...'
16+
2. Click on '...'
17+
3. Scroll down to '...'
18+
4. See error
19+
20+
### Expected Behavior
21+
A clear and concise description of what you expected to happen.
22+
23+
### Actual Behavior
24+
A clear and concise description of what actually happened.
25+
26+
### Screenshots
27+
If applicable, add screenshots to help explain your problem.
28+
29+
### Additional Context
30+
Add any other context about the problem here.
31+
32+
---
33+
34+
## Contribution Checklist
35+
- [ ] I have searched existing issues to ensure this bug hasn't been reported
36+
- [ ] I have provided clear reproduction steps
37+
- [ ] I have included relevant environment details
38+
- [ ] I have described both expected and actual behavior
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
name: Feature or Enhancement Request
3+
about: Suggest a new feature or improvement to existing functionality
4+
title: '[Enhancement]: <short description>'
5+
labels: ['enhancement']
6+
assignees: ''
7+
---
8+
9+
## Enhancement Summary
10+
A clear and concise description of the enhancement or feature you'd like to see.
11+
12+
### Motivation
13+
Why is this feature needed? What problem does it solve or what value does it add?
14+
15+
### Proposed Solution
16+
Describe your idea or how you would like it to work.
17+
18+
### Alternatives Considered
19+
Have you thought of any other ways to solve the problem?
20+
21+
### Screenshots / Mockups
22+
If applicable, add visuals or examples of how this could look/work.
23+
24+
### Additional Context
25+
Any other relevant information or use cases.
26+
27+
---
28+
29+
## Contribution Checklist
30+
- [ ] I have checked existing enhancement requests
31+
- [ ] I have clearly described the proposed change
32+
- [ ] I have explained the motivation and context
33+
- [ ] I am willing to help implement this feature (optional)

.github/release-drafter.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name-template: 'v$RESOLVED_VERSION 🌈'
2+
tag-template: 'v$RESOLVED_VERSION'
3+
categories:
4+
- title: '🚀 Features'
5+
labels:
6+
- 'feature'
7+
- 'enhancement'
8+
- title: '🐛 Bug Fixes'
9+
labels:
10+
- 'fix'
11+
- 'bugfix'
12+
- 'bug'
13+
- title: '🧰 Maintenance'
14+
labels: 'chore'
15+
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
16+
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.
17+
version-resolver:
18+
major:
19+
labels:
20+
- 'major'
21+
minor:
22+
labels:
23+
- 'minor'
24+
patch:
25+
labels:
26+
- 'patch'
27+
default: patch
28+
template: |
29+
## Changes
30+
31+
$CHANGES

.github/workflows/release-drafter.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: Release Drafter
2+
3+
on:
4+
push:
5+
# branches to consider in the event; optional, defaults to all
6+
branches:
7+
- master
8+
9+
# pull_request event is required only for autolabeler
10+
pull_request:
11+
# Only following types are handled by the action, but one can default to all as well
12+
types: [opened, reopened, synchronize]
13+
# pull_request_target event is required for autolabeler to support PRs from forks
14+
# pull_request_target:
15+
# types: [opened, reopened, synchronize]
16+
17+
permissions:
18+
contents: read
19+
20+
jobs:
21+
update_release_draft:
22+
permissions:
23+
# write permission is required to create a github release
24+
contents: write
25+
# write permission is required for autolabeler
26+
# otherwise, read permission is required at least
27+
pull-requests: write
28+
runs-on: ubuntu-latest
29+
steps:
30+
# (Optional) GitHub Enterprise requires GHE_HOST variable set
31+
#- name: Set GHE_HOST
32+
# run: |
33+
# echo "GHE_HOST=${GITHUB_SERVER_URL##https:\/\/}" >> $GITHUB_ENV
34+
35+
# Drafts your next Release notes as Pull Requests are merged into "master"
36+
- uses: release-drafter/[email protected]
37+
# (Optional) specify config name to use, relative to .github/. Default: release-drafter.yml
38+
# with:
39+
# config-name: my-config.yml
40+
# disable-autolabeler: true
41+
env:
42+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

src/scripts/scrumHelper.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,8 @@ ${userReason}`;
303303
else if (projectUrl === 'open-event') project = 'Open Event';
304304
return project;
305305
}
306-
function scrumSubjectLoaded() {
306+
307+
function scrumSubjectLoaded() {
307308
try{
308309

309310

@@ -476,7 +477,6 @@ ${userReason}`;
476477
return;
477478
}
478479

479-
480480
clearInterval(intervalSubject);
481481
scrumSubject = elements.subject;
482482

0 commit comments

Comments
 (0)