File: release_prep.yml

package info (click to toggle)
ruby-puppetlabs-spec-helper 8.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 368 kB
  • sloc: ruby: 1,526; sh: 8; makefile: 6
file content (20 lines) | stat: -rw-r--r-- 531 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name: "Release Prep"

on:
  workflow_dispatch:
   inputs:
    target:
      description: "The target for the release. This can be a commit sha or a branch."
      required: false
      default: "main"
    version:
      description: "Version of gem to be released."
      required: true

jobs:
  release_prep:
    uses: "puppetlabs/cat-github-actions/.github/workflows/gem_release_prep.yml@main"
    with:
      target: "${{ github.event.inputs.target }}"
      version: "${{ github.event.inputs.version }}"
    secrets: "inherit"