From f511e4cf2f4392dfa795b81ecd8e9c5e5a9eba9b Mon Sep 17 00:00:00 2001 From: Mike Alfare Date: Sun, 21 Apr 2024 21:14:01 -0400 Subject: [PATCH] clean up rebase artifacts --- .github/workflows/scheduled-tests.yml | 72 --------------------------- 1 file changed, 72 deletions(-) delete mode 100644 .github/workflows/scheduled-tests.yml diff --git a/.github/workflows/scheduled-tests.yml b/.github/workflows/scheduled-tests.yml deleted file mode 100644 index cd5099492..000000000 --- a/.github/workflows/scheduled-tests.yml +++ /dev/null @@ -1,72 +0,0 @@ -# **what?** -# The purpose of this workflow is to trigger CI to run for each release -# branch on a regular cadence. If the CI workflow fails for a branch, it -# will post to dev-core-alerts to raise awareness. -# -# **why?** -# Ensures release branches are always shippable and not broken. -# Also, can catch any dependencies shifting beneath us that might -# introduce breaking changes (could also impact Cloud). - -# **when?** -# - scheduled with the repository variable DBT_SCHEDULED_TESTS_SCHEDULE -# - manually -name: "Scheduled tests" - -on: - schedule: - - cron: ${{ vars.DBT_SCHEDULED_TESTS_SCHEDULE }} - workflow_dispatch: - -permissions: read-all - -jobs: - code-quality: - name: "Code quality" - uses: dbt-labs/dbt-redshift/.github/workflows/code-quality.yml - strategy: - matrix: - branch: ${{ fromJSON(vars.DBT_SCHEDULED_TESTS_BRANCHES) }} - with: - branch: ${{ matrix.branch }} - - integration-tests: - name: "Integration tests" - uses: dbt-labs/dbt-redshift/.github/workflows/integration-tests.yml - strategy: - matrix: - branch: ${{ fromJSON(vars.DBT_SCHEDULED_TESTS_BRANCHES) }} - with: - branch: ${{ matrix.branch }} - - unit-tests: - name: "Unit tests" - uses: dbt-labs/dbt-redshift/.github/workflows/unit-tests.yml - strategy: - matrix: - branch: ${{ fromJSON(vars.DBT_SCHEDULED_TESTS_BRANCHES) }} - with: - branch: ${{ matrix.branch }} - - verify-build-artifacts: - name: "Unit tests" - uses: dbt-labs/dbt-redshift/.github/workflows/build-artifacts.yml - strategy: - matrix: - branch: ${{ fromJSON(vars.DBT_SCHEDULED_TESTS_BRANCHES) }} - with: - branch: ${{ matrix.branch }} - - post-failure: - runs-on: ubuntu-latest - needs: test - if: ${{ failure() }} - steps: - - name: Posting scheduled run failures - uses: ravsamhq/notify-slack-action@v2 - if: ${{ github.event_name == 'schedule' }} - with: - notification_title: 'Redshift nightly integration test failed' - status: ${{ job.status }} - env: - SLACK_WEBHOOK_URL: ${{ secrets.SLACK_DEV_ADAPTER_ALERTS }}