Skip to content

Commit c9c9323

Browse files
committed
fix: swap hyphen for underscore
1 parent 327a823 commit c9c9323

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/upstream-sync.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name: Upstream Sync Workflow
33
'on':
44
workflow_call:
55
inputs:
6-
release-series:
7-
description: "OpenStack release series you wish to sync against, for example; xena, wallaby or victoria"
6+
release_series:
7+
description: 'The OpenStack release series you wish to sync against.'
88
required: true
99
type: string
1010
jobs:

workflow-templates/upstream-sync.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Upstream Sync
33
'on':
44
schedule:
5-
- cron: "15 8 * * 1"
5+
- cron: '15 8 * * 1'
66
workflow_dispatch:
77
permissions:
88
contents: write
@@ -12,14 +12,14 @@ jobs:
1212
name: Synchronise stackhpc/xena
1313
uses: stackhpc/.github/.github/workflows/upstream-sync.yml@main
1414
with:
15-
release-series: xena
15+
release_series: xena
1616
synchronise-wallaby:
1717
name: Synchronise stackhpc/wallaby
1818
uses: stackhpc/.github/.github/workflows/upstream-sync.yml@main
1919
with:
20-
release-series: wallaby
20+
release_series: wallaby
2121
synchronise-victoria:
2222
name: Synchronise stackhpc/victoria
2323
uses: stackhpc/.github/.github/workflows/upstream-sync.yml@main
2424
with:
25-
release-series: victoria
25+
release_series: victoria

0 commit comments

Comments
 (0)