Skip to content

Commit

Permalink
jellyfish
Browse files Browse the repository at this point in the history
  • Loading branch information
jesskranz committed Jun 28, 2024
1 parent 7e08710 commit 64759c3
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/jellyfish_monitoring.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
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' }}

0 comments on commit 64759c3

Please sign in to comment.