forked from canonical/github-runner-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (30 loc) · 787 Bytes
/
promote_charm.yaml
File metadata and controls
32 lines (30 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: Promote charm
on:
workflow_dispatch:
inputs:
origin-channel:
type: choice
description: 'Origin Channel'
options:
- latest/beta
- latest/edge
- 1/edge
destination-channel:
type: choice
description: 'Destination Channel'
options:
- latest/stable
- latest/beta
- 1/stable
secrets:
CHARMHUB_TOKEN:
required: true
jobs:
promote-charm:
uses: canonical/operator-workflows/.github/workflows/promote_charm.yaml@main
with:
origin-channel: ${{ github.event.inputs.origin-channel }}
destination-channel: ${{ github.event.inputs.destination-channel }}
doc-automation-disabled: false
base-channel: '22.04'
secrets: inherit