Skip to content

Commit da4d27a

Browse files
authored
Reports Group - v0 (yoanm#137)
1 parent c1cc09d commit da4d27a

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed

.github/workflows/CI.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
name: 'CI'
22

3-
43
on: # Build any PRs and main branch changes
54
workflow_dispatch: # Allows to run the workflow manually from the Actions tab
65
pull_request:

.github/workflows/reusable-CI-workflow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
- name: Create "unit tests" reports directory
6767
if: ${{ env.COVERAGE_TYPE == 'xdebug' }}
6868
id: unit-tests-coverage-group
69-
uses: yoanm/temp-reports-group-workspace/gha-create@improve
69+
uses: yoanm/temp-reports-group-workspace/gha-create@v0
7070
with:
7171
name: unit-tests
7272
format: clover
@@ -79,7 +79,7 @@ jobs:
7979
- name: Create "functional tests" coverage group
8080
if: ${{ env.COVERAGE_TYPE == 'xdebug' }}
8181
id: functional-tests-coverage-group
82-
uses: yoanm/temp-reports-group-workspace/gha-create@improve
82+
uses: yoanm/temp-reports-group-workspace/gha-create@v0
8383
with:
8484
name: functional-tests
8585
format: clover

.github/workflows/reusable-coverage-upload-workflow.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ jobs:
1717
checks: write # For the check run creation !
1818
steps:
1919
- name: 'Check run ○'
20-
uses: yoanm/temp-reports-group-workspace/gha-attach-check-run-to-triggering-workflow@improve
20+
uses: yoanm/temp-reports-group-workspace/gha-attach-check-run-to-triggering-workflow@v0
2121
with:
2222
name: 'Fetch coverage info'
2323
fails-on-triggering-workflow-failure: true
2424

25-
- uses: yoanm/temp-reports-group-workspace/gha-fetch-workflow-metadata@improve
25+
- uses: yoanm/temp-reports-group-workspace/gha-fetch-workflow-metadata@v0
2626
id: fetch-workflow-metadata
2727

2828
outputs:
@@ -32,7 +32,7 @@ jobs:
3232
codacy-uploader:
3333
name: Codacy
3434
needs: [fetch-info]
35-
uses: yoanm/temp-reports-group-workspace/.github/workflows/codacy-upload-from-artifacts.yml@improve
35+
uses: yoanm/temp-reports-group-workspace/.github/workflows/codacy-upload-from-artifacts.yml@v0
3636
permissions:
3737
contents: read
3838
checks: write # For the check run creation !
@@ -41,7 +41,6 @@ jobs:
4141
with:
4242
artifacts-pattern: coverage-groups-*
4343
run-id: ${{ needs.fetch-info.outputs.run-id }}
44-
override-job-name: "Codacy title"
4544
force-git-commit: ${{ needs.fetch-info.outputs.commit-sha }}
4645
# force-uploader-language: ...
4746
# force-uploader-coverage-parser: ...
@@ -50,7 +49,7 @@ jobs:
5049
codecov-uploader:
5150
name: Codecov
5251
needs: [fetch-info]
53-
uses: yoanm/temp-reports-group-workspace/.github/workflows/codecov-upload-from-artifacts.yml@improve
52+
uses: yoanm/temp-reports-group-workspace/.github/workflows/codecov-upload-from-artifacts.yml@v0
5453
permissions:
5554
contents: read
5655
checks: write # For the check run creation !
@@ -59,7 +58,6 @@ jobs:
5958
with:
6059
artifacts-pattern: coverage-groups-*
6160
run-id: ${{ needs.fetch-info.outputs.run-id }}
62-
override-job-name: "Codecov title"
6361
force-git-commit: ${{ needs.fetch-info.outputs.commit-sha }}
6462
force-git-branch: ${{ needs.fetch-info.outputs.branch }}
6563
force-gh-pr: ${{ needs.fetch-info.outputs.pr-number }}

0 commit comments

Comments
 (0)