Merge pull request #12 from helxplatform/develop #3
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
# This chart catches changes and then pushed to main branch | |
# Tests, Updates Dependency and Packages, then pushes to | |
# our parent repo that holds all Helx Charts Helm-Charts | |
name: Trigger-Helm-Charts | |
on: | |
push: | |
branches: | |
- main | |
- master | |
paths-ignore: | |
- .github/workflows/* | |
- .github/* | |
jobs: | |
trigger-helm-charts: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Trigger Helm-Charts Workflow | |
env: | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
run: | | |
gh --repo https://github.com/helxplatform/helm-charts \ | |
workflow run package-index.yml \ | |
-f appRepo=${{ github.repository }} \ | |
-f actor=${{ github.actor }} \ | |
--ref develop |