jellyfish #1
Workflow file for this run
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: Report to Jellyfish | |
on: | |
push: | |
branches: | |
- master | |
- jk-jellyfish | |
jobs: | |
notify-changes: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Notify of merge | |
run: | | |
echo "Reporting to Jellyfish" | |
report_results: | |
needs: notify-changes | |
runs-on: ubuntu-latest | |
# only want to do trigger this when the merge to master is made by the deployment bot | |
steps: | |
- uses: idio/datascience_gha_workflows@main | |
with: | |
jellyfish_api_token: ${{ secrets.JELLYFISH_API_TOKEN }} | |
name: "Deployment of Kubeluigi" | |
is_successful: ${{ needs.notify-changes.result == 'success' }} |