Skip to content

Commit f0cd49d

Browse files
committed
Merge branch 'release/1.2.10'
2 parents 25a1912 + bc51086 commit f0cd49d

File tree

12 files changed

+89
-57
lines changed

12 files changed

+89
-57
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

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

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Bug report
2+
description: Create a report to help us improve
3+
4+
title: '[Bug]: '
5+
labels:
6+
- bug
7+
assignees:
8+
- nekofar
9+
10+
body:
11+
- type: textarea
12+
attributes:
13+
label: Describe the bug
14+
description: A clear and concise description of what the bug is.
15+
placeholder: Describe the bug here.
16+
17+
- type: textarea
18+
attributes:
19+
label: Steps to reproduce the behavior
20+
description: List the steps to reproduce the behavior, including any necessary environment details.
21+
placeholder: List the steps to reproduce here.
22+
23+
- type: textarea
24+
attributes:
25+
label: Expected behavior
26+
description: A clear and concise description of what you expected to happen.
27+
placeholder: Describe the expected behavior here.
28+
29+
- type: textarea
30+
attributes:
31+
label: Screenshots
32+
description: If applicable, add screenshots to help explain the problem.
33+
placeholder: Add any relevant screenshots here.
34+
35+
- type: textarea
36+
attributes:
37+
label: Additional context
38+
description: Add any other context about the problem here.
39+
placeholder: Add any additional context here.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank_issues_enabled: false

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 20 deletions
This file was deleted.
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Feature request
2+
description: Suggest an idea for this project
3+
4+
title: '[Feature]: '
5+
labels:
6+
- enhancement
7+
assignees:
8+
- nekofar
9+
10+
body:
11+
- type: textarea
12+
attributes:
13+
label: Is your feature request related to a problem? Please describe.
14+
description: A clear and concise description of what the problem is. Ex. I'm always frustrated when ...
15+
placeholder: Describe the problem here.
16+
17+
- type: textarea
18+
attributes:
19+
label: Describe the solution you'd like
20+
description: A clear and concise description of what you want to happen.
21+
placeholder: Describe the solution you'd like here.
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+
placeholder: Describe alternatives here.
28+
29+
- type: textarea
30+
attributes:
31+
label: Additional context
32+
description: Add any other context or screenshots about the feature request here.
33+
placeholder: Add any additional context or screenshots here.

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
3535
# Check out current repository
3636
- name: Fetch Sources
37-
uses: actions/checkout@v3.5.0
37+
uses: actions/checkout@v3.5.2
3838

3939
# Validate wrapper
4040
- name: Gradle Wrapper Validation
@@ -126,7 +126,7 @@ jobs:
126126

127127
# Check out current repository
128128
- name: Fetch Sources
129-
uses: actions/checkout@v3.5.0
129+
uses: actions/checkout@v3.5.2
130130

131131
# Remove old release drafts by using the curl request for the available releases with draft flag
132132
- name: Remove Old Release Drafts

.github/workflows/changelog.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
# Check out current repository
1818
- name: Fetch Sources
19-
uses: actions/checkout@v3.5.0
19+
uses: actions/checkout@v3.5.2
2020
with:
2121
fetch-depth: 0
2222

@@ -47,7 +47,7 @@ jobs:
4747

4848
# Create pull request
4949
- name: Create Pull Request
50-
uses: peter-evans/create-pull-request@v4.2.4
50+
uses: peter-evans/create-pull-request@v5.0.0
5151
with:
5252
delete-branch: true
5353
branch-suffix: short-commit-hash

.github/workflows/code_quality.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,16 @@ jobs:
2020

2121
# Check out current repository
2222
- name: Fetch Sources
23-
uses: actions/checkout@v3.5.0
23+
uses: actions/checkout@v3.5.2
2424

2525
# Run Qodana inspections
2626
- name: Qodana - Code Inspection
27-
uses: JetBrains/qodana-action@v2022.3.4
27+
uses: JetBrains/qodana-action@v2023.1.0
2828

2929
# Uploading a SARIF-formatted Qodana report to GitHub
3030
- name: Uploading Qodana report to GitHub
3131
if: ${{ false }}
32-
uses: github/codeql-action/upload-sarif@v2.2.9
32+
uses: github/codeql-action/upload-sarif@v2.3.0
3333
with:
3434
sarif_file: ${{ runner.temp }}/qodana/results/qodana.sarif.json
3535

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
# Check out current repository
1616
- name: Fetch Sources
17-
uses: actions/checkout@v3.5.0
17+
uses: actions/checkout@v3.5.2
1818
with:
1919
ref: ${{ github.event.release.tag_name }}
2020

.github/workflows/run-ui-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
# Check out current repository
3131
- name: Fetch Sources
32-
uses: actions/checkout@v3.5.0
32+
uses: actions/checkout@v3.5.2
3333

3434
# Setup Java 11 environment for the next steps
3535
- name: Setup Java

0 commit comments

Comments
 (0)