File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed
Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change 1+ # Copyright (c) 2025 Dell Inc., or its subsidiaries. All Rights Reserved.
2+ #
3+ # Licensed under the Apache License, Version 2.0 (the "License");
4+ # you may not use this file except in compliance with the License.
5+ # You may obtain a copy of the License at
6+ #
7+ # http://www.apache.org/licenses/LICENSE-2.0
8+
9+ # Reusable workflow to perform image version update on Golang based projects
10+ name : Image Version Update
11+
12+ on : # yamllint disable-line rule:truthy
13+ workflow_dispatch :
14+ inputs :
15+ version :
16+ description : " Version to release (major, minor, patch) Ex: minor"
17+ required : true
18+ repository_dispatch :
19+ types : [image-update-workflow]
20+
21+ jobs :
22+ # image version update
23+ image-version-update :
24+ uses : dell/common-github-actions/.github/workflows/image-version-workflow.yaml@main
25+ with :
26+ version : " ${{ github.event.inputs.version || 'minor' }}"
27+ secrets : inherit
You can’t perform that action at this time.
0 commit comments