Skip to content

Commit 5b96cf2

Browse files
authored
Merge branch 'main' into feat/allure-grpc-request-metadata
2 parents 05c52c2 + cb807c8 commit 5b96cf2

240 files changed

Lines changed: 12770 additions & 4027 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/ISSUE_TEMPLATE.md

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

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
name: 🐞 Bug Report
2-
description: File a Bug report in Java Integration
3-
title: "🐞: "
4-
labels: [ "type:bug", "triage" ]
1+
name: Bug report
2+
description: Report broken or incorrect behavior in an Allure Java integration.
3+
type: bug
54
assignees: []
65
body:
76
- type: markdown
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Feature request
2+
description: Suggest a user-facing feature or improvement.
3+
type: feature
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for suggesting an improvement for Allure Java. Please describe the outcome you need, not only a possible implementation.
9+
- type: textarea
10+
id: problem
11+
attributes:
12+
label: What problem should this solve?
13+
description: Describe the workflow, limitation, or user need behind the request.
14+
validations:
15+
required: true
16+
- type: textarea
17+
id: proposal
18+
attributes:
19+
label: What would you like to happen?
20+
description: Describe the behavior or capability you want Allure Java to provide.
21+
validations:
22+
required: true
23+
- type: textarea
24+
id: alternatives
25+
attributes:
26+
label: Alternatives considered
27+
description: Share any current workaround or alternative design you have considered.
28+
- type: textarea
29+
id: additional-context
30+
attributes:
31+
label: Additional context
32+
description: Add examples, links, screenshots, or related issues.

.github/ISSUE_TEMPLATE/task.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Task
2+
description: Track internal maintenance or repository work.
3+
type: task
4+
body:
5+
- type: textarea
6+
id: goal
7+
attributes:
8+
label: Goal
9+
description: Describe the maintenance, cleanup, or repository task.
10+
validations:
11+
required: true
12+
- type: textarea
13+
id: details
14+
attributes:
15+
label: Details
16+
description: Add relevant context, constraints, links, or acceptance criteria.

.github/dependabot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ updates:
55
schedule:
66
interval: "daily"
77
labels:
8-
- "type:dependencies"
8+
- "pr:dependencies"
99

1010
- package-ecosystem: "gradle"
1111
directory: "/"
1212
schedule:
1313
interval: "daily"
1414
labels:
15-
- "type:dependencies"
15+
- "pr:dependencies"

.github/labeler.yml

Lines changed: 0 additions & 98 deletions
This file was deleted.
Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!---
2-
Thank you so much for sending us a pull request!
2+
Thank you so much for sending us a pull request!
33
4-
Make sure you have a clear name for your pull request.
4+
Make sure you have a clear name for your pull request.
55
The name should start with a capital letter and no dot is required in the end of the sentence.
66
To link the request with issues use the following notation: (fixes #123, fixes #321\)
77
@@ -12,12 +12,14 @@ An example of good pull request names:
1212
-->
1313

1414
### Context
15+
1516
<!---
1617
Describe the problem or feature in addition to a link to the issues
1718
-->
1819

1920
#### Checklist
21+
2022
- [ ] [Sign Allure CLA][cla]
2123
- [ ] Provide unit tests
2224

23-
[cla]: https://cla-assistant.io/accept/allure-framework/allure2
25+
[cla]: https://cla-assistant.io/accept/allure-framework/allure-java

.github/release.yml

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,28 @@
11
# release.yml
22

33
changelog:
4+
exclude:
5+
labels:
6+
- 'pr:invalid'
47
categories:
58
- title: '🚀 New Features'
69
labels:
7-
- 'type:new feature'
10+
- 'pr:new feature'
811
- title: '🔬 Improvements'
912
labels:
10-
- 'type:improvement'
13+
- 'pr:improvement'
1114
- title: '🐞 Bug Fixes'
1215
labels:
13-
- 'type:bug'
16+
- 'pr:bug'
1417
- title: '⬆️ Dependency Updates'
1518
labels:
16-
- 'type:dependencies'
19+
- 'pr:dependencies'
1720
- title: '📖 Documentation improvements'
1821
labels:
19-
- 'type:documentation'
22+
- 'pr:documentation'
2023
- title: '⛔️ Security'
2124
labels:
22-
- 'type:security'
25+
- 'pr:security'
2326
- title: '👻 Internal changes'
2427
labels:
25-
- 'type:internal'
28+
- 'pr:internal'

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ jobs:
3131
ALLURE_MATRIX_ENV: ubuntu-jdk-${{ matrix.java }}
3232
ALLURE_TEST_DUMP_NAME: allure-results-test-jdk-${{ matrix.java }}
3333
steps:
34-
- uses: actions/checkout@v6
34+
- uses: actions/checkout@v7
3535

36-
- uses: actions/setup-node@v6
36+
- uses: actions/setup-node@v7
3737
with:
3838
node-version: '20.x'
3939

@@ -92,9 +92,9 @@ jobs:
9292
ALLURE_ENDPOINT: ${{ secrets.ALLURE_ENDPOINT }}
9393
ALLURE_PROJECT_ID: ${{ secrets.ALLURE_PROJECT_ID }}
9494
steps:
95-
- uses: actions/checkout@v6
95+
- uses: actions/checkout@v7
9696

97-
- uses: actions/setup-node@v6
97+
- uses: actions/setup-node@v7
9898
with:
9999
node-version: '20.x'
100100

.github/workflows/dependency-submission.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout sources
17-
uses: actions/checkout@v6
17+
uses: actions/checkout@v7
1818
- name: Generate and submit dependency graph
1919
uses: gradle/actions/dependency-submission@v6
2020
env:

0 commit comments

Comments
 (0)