Merge pull request #609 from stackhpc/dashboard-typos #391
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Promote package repositories | |
on: | |
push: | |
branches: | |
# NOTE(mgoddard): Reference only the current release branch here. | |
- stackhpc/yoga | |
jobs: | |
promote: | |
name: Trigger package repository promotion | |
if: github.repository == 'stackhpc/stackhpc-kayobe-config' | |
runs-on: ubuntu-latest | |
permissions: {} | |
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 }} | |
- name: Display link to package repository promotion workflows | |
run: | | |
echo "::notice Package repository promote workflow: https://github.com/stackhpc/stackhpc-release-train/actions/workflows/package-promote.yml" |