Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
78d87eb
Improve group-reports
yoanm Aug 16, 2024
3a221df
trigger CI
yoanm Aug 16, 2024
1bc426b
trigger CI
yoanm Aug 16, 2024
febf93b
trigger CI
yoanm Aug 16, 2024
545d1d5
trigger CI
yoanm Aug 16, 2024
b878e50
v0
yoanm Aug 16, 2024
b0262b1
Try
yoanm Aug 19, 2024
1773800
trigger CI
yoanm Aug 19, 2024
5d7f78a
trigger CI
yoanm Aug 19, 2024
e9b1fb7
trigger CI
yoanm Aug 19, 2024
736f94c
trigger CI
yoanm Aug 20, 2024
15c4c44
trigger CI
yoanm Aug 20, 2024
59bad48
trigger CI
yoanm Aug 20, 2024
f23492f
trigger CI
yoanm Aug 20, 2024
50be912
trigger CI
yoanm Aug 21, 2024
d84934d
trigger CI
yoanm Aug 21, 2024
1f51a75
Improve
yoanm Aug 21, 2024
5e8d6d6
trigger CI
yoanm Aug 21, 2024
5c6e3ce
trigger CI
yoanm Aug 21, 2024
288c640
Improve
yoanm Aug 21, 2024
f7e6fac
trigger CI
yoanm Aug 21, 2024
d797c05
trigger CI
yoanm Aug 21, 2024
388e790
trigger CI
yoanm Aug 21, 2024
d65fc38
trigger CI
yoanm Aug 21, 2024
765c82a
trigger CI
yoanm Aug 21, 2024
012f395
trigger CI
yoanm Aug 21, 2024
69c3d4a
trigger CI
yoanm Aug 21, 2024
1701774
trigger CI
yoanm Aug 21, 2024
2e569b4
trigger CI
yoanm Aug 21, 2024
11e49db
trigger CI
yoanm Aug 21, 2024
de8a587
trigger CI
yoanm Aug 21, 2024
9804514
trigger CI
yoanm Aug 21, 2024
2048f6a
trigger CI
yoanm Aug 21, 2024
7b161a5
trigger CI
yoanm Aug 21, 2024
b86b428
trigger CI
yoanm Aug 21, 2024
8930707
trigger CI
yoanm Aug 21, 2024
e1a715d
trigger CI
yoanm Aug 21, 2024
a0c6eb7
trigger CI
yoanm Aug 21, 2024
9da7037
trigger CI
yoanm Aug 21, 2024
6ebcb87
trigger CI
yoanm Aug 21, 2024
e353cac
trigger CI
yoanm Aug 21, 2024
b98a821
trigger CI
yoanm Aug 21, 2024
e5dbcbf
trigger CI
yoanm Aug 21, 2024
06c7db9
trigger CI
yoanm Aug 21, 2024
1e7a1db
trigger CI
yoanm Aug 21, 2024
2f8ef37
trigger CI
yoanm Aug 21, 2024
bf32868
trigger CI
yoanm Aug 21, 2024
084452a
Improve
yoanm Aug 21, 2024
c74bed4
trigger CI
yoanm Aug 21, 2024
f6286ab
Improve
yoanm Aug 21, 2024
e28da80
trigger CI
yoanm Aug 21, 2024
8c97a3c
trigger CI
yoanm Aug 21, 2024
02fa0aa
Finish
yoanm Aug 21, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/coverage-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
upload:
name: Upload
name: Coverage
permissions:
contents: read
checks: write # For the check run creation !
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-check-CI-updates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
uses: ./.github/workflows/reusable-CI-workflow.yml

upload:
name: Upload
name: Coverage
needs: [tests]
permissions:
contents: read
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/reusable-coverage-upload-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ jobs:
steps:
- name: 'Check run ○'
uses: yoanm/temp-reports-group-workspace/gha-attach-check-run-to-triggering-workflow@v0
if: ${{ 'workflow_run' == github.event_name }}
with:
name: 'Fetch coverage info'
name: 'Fetch triggering workflow metadata'
fails-on-triggering-workflow-failure: true

- uses: yoanm/temp-reports-group-workspace/gha-fetch-workflow-metadata@v0
Expand All @@ -28,6 +29,8 @@ jobs:
outputs:
commit-sha: ${{ steps.fetch-workflow-metadata.outputs.commit-sha }}
run-id: ${{ steps.fetch-workflow-metadata.outputs.run-id }}
branch: ${{ steps.fetch-workflow-metadata.outputs.branch }}
pull-request: ${{ steps.fetch-workflow-metadata.outputs.pull-request }}

codacy-uploader:
name: Codacy
Expand Down Expand Up @@ -60,7 +63,7 @@ jobs:
run-id: ${{ needs.fetch-info.outputs.run-id }}
force-git-commit: ${{ needs.fetch-info.outputs.commit-sha }}
force-git-branch: ${{ needs.fetch-info.outputs.branch }}
force-gh-pr: ${{ needs.fetch-info.outputs.pr-number }}
force-gh-pr: ${{ needs.fetch-info.outputs.pull-request }}
force-uploader-build: ${{ needs.fetch-info.outputs.run-id }}
force-uploader-build-url: ${{ needs.fetch-info.outputs.run-url }}

Expand Down