Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .github/workflows/promote.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
name: Promote package repositories
on:
push:
branches:
# NOTE(mgoddard): Keep this list tightly controlled, since we only want
# to promote from release branches.
- stackhpc/wallaby
# FIXME: remove
- ci-promote-packages
jobs:
promote:
name: Trigger package repository promotion
runs-on: ubuntu-latest
steps:
# NOTE(mgoddard): Trigger another CI workflow in the
# stackhpc-release-train repository.
- name: Trigger package repository promotion
run: |
gh workflow run \
package-promote.yml \
--repo stackhpc/stackhpc-release-train \
--ref main \
-f kayobe_config_branch=${{ github.ref_name }}
env:
GITHUB_TOKEN: ${{ secrets.STACKHPC_RELEASE_TRAIN_TOKEN }}