File tree Expand file tree Collapse file tree 4 files changed +8
-9
lines changed
Expand file tree Collapse file tree 4 files changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -10,11 +10,8 @@ on: # Build any PRs and main branch changes
1010 # In case of updates to those workflows, they must be pre-checked by `pre-check-CI-updates.yml` rather than this workflow !
1111 # Any updates on those workflows are expected to be restricted to those workflows only ! (no update on code for instance)
1212 - ' .github/workflows/pre-check-CI-updates.yml'
13- - ' .github/workflows/CI.yml'
14- - ' .github/workflows/coverage-upload.yml'
1513 - ' .github/workflows/reusable-CI-workflow.yml'
1614 - ' .github/workflows/reusable-coverage-upload-workflow.yml'
17- - ' .github/workflows/auto-merge-dependabot.yml'
1815 push :
1916 branches : [ master ]
2017 schedule :
@@ -29,7 +26,6 @@ concurrency:
2926
3027env :
3128 TEST_OUTPUT_STYLE : pretty
32- COMPOSER_OPTIONS : --optimize-autoloader
3329
3430jobs :
3531 tests :
Original file line number Diff line number Diff line change 1818 uses : dependabot/fetch-metadata@v2.4.0
1919 with :
2020 github-token : " ${{ secrets.GITHUB_TOKEN }}"
21+
22+ - name : Add custom labels
23+ run : gh pr edit "${{github.event.pull_request.html_url}}" --add-label "with-nightly-tests"
24+ env :
25+ GITHUB_TOKEN : ${{secrets.GITHUB_TOKEN}}
26+
2127 - name : Enable auto-merge for Dependabot PRs
2228 if : ${{ steps.metadata.outputs.update-type == 'version-update:semver-minor' || steps.metadata.outputs.update-type == 'version-update:semver-patch'}}
2329 run : gh pr merge --auto --squash "$PR_URL"
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ permissions:
99 checks : write # For the check run creation !
1010
1111jobs :
12- upload :
12+ coverage :
1313 name : Coverage
1414 permissions :
1515 contents : read
Original file line number Diff line number Diff line change 1212 branches : [master] # Only for PR targeting master branch
1313 paths : # /!\ Duplicate the same list as `on.pull_request.paths-ignore` property value for CI workflow !
1414 - ' .github/workflows/pre-check-CI-updates.yml' # This workflow
15- - ' .github/workflows/CI.yml'
16- - ' .github/workflows/coverage-upload.yml'
1715 - ' .github/workflows/reusable-CI-workflow.yml'
1816 - ' .github/workflows/reusable-coverage-upload-workflow.yml'
19- - ' .github/workflows/auto-merge-dependabot.yml'
2017
2118permissions :
2219 contents : read
3330 contents : read
3431 uses : ./.github/workflows/reusable-CI-workflow.yml
3532
36- upload :
33+ coverage :
3734 name : Coverage
3835 needs : [tests]
3936 permissions :
You can’t perform that action at this time.
0 commit comments