File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,17 +14,23 @@ jobs:
1414 secrets :
1515 AUTOMERGE_APP_ID : ${{ secrets.AUTOMERGE_APP_ID }}
1616 AUTOMERGE_PEM : ${{ secrets.AUTOMERGE_PEM }}
17+
1718 pr_title_format_check :
1819 uses : ./.github/workflows/pr_title_check.yml
20+
1921 get_config_values :
2022 uses : ./.github/workflows/get-repo-config.yml
23+ with :
24+ verify_published_from_main_image : false
25+
2126 quality_checks :
2227 uses : ./.github/workflows/quality-checks-devcontainer.yml
2328 needs : [get_config_values]
2429 with :
2530 pinned_image : ${{ needs.get_config_values.outputs.pinned_image }}
2631 secrets :
2732 SONAR_TOKEN : ${{ secrets.SONAR_TOKEN }}
33+
2834 tag_release :
2935 needs : get_config_values
3036 uses : ./.github/workflows/tag-release-devcontainer.yml
3743 pinned_image : ${{ needs.get_config_values.outputs.pinned_image }}
3844 branch_name : ${{ github.event.pull_request.head.ref }}
3945 tag_format : ${{ needs.get_config_values.outputs.tag_format }}
40- verify_published_from_main_image : false
4146 secrets : inherit
Original file line number Diff line number Diff line change 2525 pinned_image : ${{ needs.get_config_values.outputs.pinned_image }}
2626 branch_name : main
2727 tag_format : ${{ needs.get_config_values.outputs.tag_format }}
28- verify_published_from_main_image : true
2928 secrets : inherit
Original file line number Diff line number Diff line change 4545 description : " An repository for the extra artifact"
4646 required : false
4747 type : string
48- verify_published_from_main_image :
49- required : true
50- type : boolean
5148 outputs :
5249 version_tag :
5350 value : ${{ jobs.tag_release.outputs.version_tag }}
Original file line number Diff line number Diff line change @@ -308,7 +308,6 @@ This workflow uses the semantic-release npm package to generate a new version ta
308308- `extra_artifact_id` : optional param of the extra artifact id to include in the release
309309- `extra_artifact_run_id` : optional param of the run id to download the extra artifact id to include in the release
310310- `extra_artifact_repository` : optional param to indicate which repo the run to download the artifact was from
311- - `verify_published_from_main_image` : indicates if we should verify the image was published from main branch in eps-devcontainers
312311
313312# ### Outputs
314313
@@ -339,7 +338,6 @@ jobs:
339338 pinned_image: "${{ needs.get_config_values.outputs.pinned_image }}"
340339 branch_name: main
341340 publish_packages: ""
342- verify_published_from_main_image: true
343341` ` `
344342
345343
You can’t perform that action at this time.
0 commit comments