package-index #83
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
# Designed to be triggered by github action application chart | |
# This workflow will only be triggered in the context of the 'develop branch' | |
name: package-index | |
on: | |
workflow_dispatch: | |
inputs: | |
appRepo: | |
description: '🛑 NOT FOR MANUAL USE!!! Repo of the newly updated Helm Chart.' | |
required: true | |
type: string | |
actor: | |
description: 'The username who caused the update to helm-charts on another repo' | |
required: true | |
type: string | |
jobs: | |
clone-package-index: | |
uses: helxplatform/helx-github-actions/.github/workflows/package-index.yml@main | |
secrets: inherit | |
with: | |
appRepo: ${{ inputs.appRepo }} | |
actor: ${{ inputs.actor }} |