From 868e81de4e4faaca881cc70e03f1f9e67e08de60 Mon Sep 17 00:00:00 2001 From: Alex Meijer Date: Thu, 3 Oct 2024 11:21:25 -0400 Subject: [PATCH] Atm/restructure testharness (#34) * use deploy key Signed-off-by: Alex Meijer * clean up, try out webhook Signed-off-by: Alex Meijer * bugfixes Signed-off-by: Alex Meijer --------- Signed-off-by: Alex Meijer Signed-off-by: Alex Meijer --- .github/workflows/run-integration-tests.yaml | 6 +++--- .github/workflows/update-manifest.yaml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/run-integration-tests.yaml b/.github/workflows/run-integration-tests.yaml index f05f664..1b5ad4f 100644 --- a/.github/workflows/run-integration-tests.yaml +++ b/.github/workflows/run-integration-tests.yaml @@ -5,7 +5,7 @@ on: branches: - main # schedule: - # - cron: "0 0 * * *" + # - cron: "0 5 * * *" jobs: integration-test-runner: @@ -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 @@ -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 diff --git a/.github/workflows/update-manifest.yaml b/.github/workflows/update-manifest.yaml index ba606c7..f877045 100644 --- a/.github/workflows/update-manifest.yaml +++ b/.github/workflows/update-manifest.yaml @@ -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