root / .github / workflows / prepare_release.yml @ 1d331291
Historique | Voir | Annoter | Télécharger (694 octets)
1 | 1d331291 | Tim Meusel | ---
|
---|---|---|---|
2 | # Managed by modulesync - DO NOT EDIT
|
||
3 | # https://voxpupuli.org/docs/updating-files-managed-with-modulesync/
|
||
4 | |||
5 | name: 'Prepare Release' |
||
6 | |||
7 | on:
|
||
8 | workflow_dispatch:
|
||
9 | inputs:
|
||
10 | version:
|
||
11 | description: 'Module version to be released. Must be a valid semver string without leading v. (1.2.3)' |
||
12 | required: false |
||
13 | |||
14 | jobs:
|
||
15 | release_prep:
|
||
16 | uses: 'voxpupuli/gha-puppet/.github/workflows/prepare_release.yml@v3' |
||
17 | with:
|
||
18 | version: ${{ github.event.inputs.version }} |
||
19 | allowed_owner: 'voxpupuli' |
||
20 | secrets:
|
||
21 | # Configure secrets here:
|
||
22 | # https://docs.github.com/en/actions/security-guides/encrypted-secrets
|
||
23 | github_pat: '${{ secrets.PCCI_PAT_RELEASE_PREP }}' |