Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions .github/workflows/create-tag-release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Create Tag and Release
# Invocable as a reusable workflow
# Can be manually triggered
on: # yamllint disable-line rule:truthy
workflow_call:
workflow_dispatch:
inputs:
option:
description: "Select type of release. If first release, use major and it will release v1.0.0."
required: true
type: choice
default: "minor"
options:
- major
- minor
- patch
- version
version:
description: "Specific semver version to release. Only used when 'version' is the selected option. Example: v2.1.x."
required: false
type: string
repository_dispatch:
types: [auto-release-workflow]

jobs:
csm-release:
name: Create Tag and Release
uses: dell/common-github-actions/.github/workflows/create-tag-release.yaml@main
with:
option: ${{ inputs.option || 'minor' }}
version: ${{ inputs.version || '' }}
secrets: inherit
2 changes: 0 additions & 2 deletions .github/workflows/license-checker.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
name: Weekly License Header Check

on:
schedule:
- cron: '0 0 * * 1' # Runs every Monday at 00:00 UTC
workflow_dispatch:
jobs:
license-check:
Expand Down
59 changes: 0 additions & 59 deletions .github/workflows/release.yaml

This file was deleted.

Loading