Skip to content

Commit

Permalink
Atm/restructure testharness (#34)
Browse files Browse the repository at this point in the history
* use deploy key

Signed-off-by: Alex Meijer <[email protected]>

* clean up, try out webhook

Signed-off-by: Alex Meijer <[email protected]>

* bugfixes

Signed-off-by: Alex Meijer <[email protected]>

---------

Signed-off-by: Alex Meijer <[email protected]>
Signed-off-by: Alex Meijer <[email protected]>
  • Loading branch information
ameijer authored Oct 3, 2024
1 parent 64f2564 commit 868e81d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/run-integration-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches:
- main
# schedule:
# - cron: "0 0 * * *"
# - cron: "0 5 * * *"

jobs:
integration-test-runner:
Expand Down Expand Up @@ -34,7 +34,7 @@ jobs:
notify-fail:
needs: [integration-test-runner]
runs-on: depot-ubuntu-22.04
runs-on: ubuntu-latest
if: failure()
steps:
- name: Slack notify
Expand All @@ -50,7 +50,7 @@ jobs:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }}
notify-success:
needs: [integration-test-runner]
runs-on: depot-ubuntu-22.04
runs-on: ubuntu-latest
if: success()
steps:
- name: Slack notify
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/update-manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ jobs:
run: |
git config --local user.email "github-actions[bot]@noreply.example.com"
git config --local user.name "github-actions[bot]"
git add manifest
git commit -m "update manifest"
git add manifest || true
git commit -m "update manifest" || true
- name: Push chart to repo
- name: update manifest
uses: ad-m/github-push-action@master
with:
ssh: true
Expand Down

0 comments on commit 868e81d

Please sign in to comment.