Skip to content

Commit 6e80117

Browse files
gilltarandonatworksanthoshatdell
authored
Dqa image version update (#430)
--------- Co-authored-by: Don Khan <[email protected]> Co-authored-by: Santhosh Lakshmanan <[email protected]>
1 parent b69477e commit 6e80117

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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

0 commit comments

Comments
 (0)