-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feature/release-updates
- Loading branch information
Showing
10 changed files
with
150 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: Auto Release CSM-Operator | ||
on: # yamllint disable-line rule:truthy | ||
workflow_dispatch: | ||
repository_dispatch: | ||
types: [auto-release-workflow] | ||
|
||
jobs: | ||
csm-release: | ||
uses: dell/common-github-actions/.github/workflows/csm-release-driver-module.yaml@main | ||
with: | ||
version: "minor" | ||
images: "csm-operator" | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Copyright (c) 2025 Dell Inc., or its subsidiaries. All Rights Reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
# Reusable workflow to perform image version update on Golang based projects | ||
name: Image Version Update | ||
|
||
on: # yamllint disable-line rule:truthy | ||
workflow_dispatch: | ||
inputs: | ||
version: | ||
description: "Version to release (major, minor, patch) Ex: minor" | ||
required: true | ||
repository_dispatch: | ||
types: [image-update-workflow] | ||
|
||
jobs: | ||
# image version update | ||
image-version-update: | ||
uses: dell/common-github-actions/.github/workflows/image-version-workflow.yaml@main | ||
with: | ||
version: "${{ github.event.inputs.version || 'minor' }}" | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Copyright (c) 2025 Dell Inc., or its subsidiaries. All Rights Reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
# Reusable workflow to perform updates of Dell client libraries to latest commits | ||
name: Dell Libraries Commit Update | ||
on: # yamllint disable-line rule:truthy | ||
workflow_dispatch: | ||
|
||
jobs: | ||
package-update: | ||
uses: dell/common-github-actions/.github/workflows/update-libraries-to-commits.yml@main | ||
name: Dell Libraries Update | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Copyright (c) 2025 Dell Inc., or its subsidiaries. All Rights Reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
# Reusable workflow to perform updates of Dell client libraries | ||
name: Dell Libraries Release Update | ||
on: # yamllint disable-line rule:truthy | ||
workflow_dispatch: | ||
repository_dispatch: | ||
types: [latest-released-libraries] | ||
|
||
jobs: | ||
package-update: | ||
uses: dell/common-github-actions/.github/workflows/update-libraries.yml@main | ||
name: Dell Libraries Update | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Copyright © 2025 Dell Inc. or its subsidiaries. All Rights Reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
# overrides file | ||
# this file, included from the Makefile, will overlay default values with environment variables | ||
# | ||
|
||
|
||
# DEFAULT values | ||
DEFAULT_MAJOR = 0 | ||
DEFAULT_MINOR = 0 | ||
DEFAULT_PATCH = 0 | ||
DEFAULT_NOTES = | ||
|
||
# Override defaults with environment variables (version components) | ||
MAJOR ?= $(DEFAULT_MAJOR) | ||
MINOR ?= $(DEFAULT_MINOR) | ||
PATCH ?= $(DEFAULT_PATCH) | ||
NOTES ?= $(DEFAULT_NOTES) | ||
|
||
# target to print some help regarding these overrides and how to use them | ||
overrides-help: | ||
@echo | ||
@echo "The following environment variables can be set to control the build" | ||
@echo | ||
@echo "MAJOR - The major version of image to be built, default is: $(DEFAULT_MAJOR)" | ||
@echo " Current setting is: $(MAJOR)" | ||
@echo "MINOR - The minor version of image to be built, default is: $(DEFAULT_MINOR)" | ||
@echo " Current setting is: $(MINOR)" | ||
@echo "PATCH - The patch version of image to be built, defaut is: $(DEFAULT_PATCH)" | ||
@echo " Current setting is: $(PATCH)" | ||
@echo "NOTES - The release notes of image to be built, default is an empty string." | ||
@echo " Current setting is: '$(NOTES)'" | ||
@echo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters