Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
clobrano authored Feb 16, 2024
1 parent a2e52cd commit daca08f
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,25 @@
name: try-reusable
on:
workflow_dispatch:
inputs:
version:
description: "The version to release, without the leading `v`"
required: true
type: string
previous_version:
description: "The previous version, used for the CVS's `replaces` field, without the leading `v`"
required: true
type: string
skip_range_lower:
description: "Lower bound for the skipRange field in the CSV, should be set to the oldest supported version, without the leading `v`"
required: true
type: string

jobs:
reusing-job:
uses: clobrano/.github/.github/workflows/blank.yml@main
with:
version: ${{inputs.version}}
previous_version: ${{inputs.previous_version}}
skip_range_lower: ${{inputs.skip_range_lower}}

0 comments on commit daca08f

Please sign in to comment.