We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d8cc8b commit e2891d9Copy full SHA for e2891d9
1 file changed
.github/workflows/maven-verify.yml
@@ -17,9 +17,12 @@ on:
17
18
jobs:
19
build:
20
-
21
runs-on: ubuntu-latest
22
+ permissions:
+ pull-requests: write
23
+ contents: write
24
+ checks: write
25
+
26
steps:
27
- uses: actions/checkout@v4
28
- name: Set up JDK 17
@@ -46,5 +49,11 @@ jobs:
46
49
# Github personal token to add comments to Pull Request
47
50
token: ${{ secrets.GITHUB_TOKEN }}
48
51
title: '# Java Code Coverage Report'
52
53
+ - name: Cucumber Report
54
+ uses: deblockt/cucumber-report-annotations-action@v1.7
55
+ with:
56
+ access-token: ${{ secrets.GITHUB_TOKEN }}
57
+ path: "**/Cucumber.json"
58
59
0 commit comments