From 267ddd130ffe14c7a7e7d362b5879f5851ccde03 Mon Sep 17 00:00:00 2001 From: ckoegel Date: Fri, 11 Oct 2024 10:50:41 -0400 Subject: [PATCH 1/3] test --- .github/workflows/test-smoke.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test-smoke.yml b/.github/workflows/test-smoke.yml index e236f84..dba3de0 100644 --- a/.github/workflows/test-smoke.yml +++ b/.github/workflows/test-smoke.yml @@ -6,6 +6,7 @@ on: pull_request: paths: - "tests/smoke/**" + workflow_dispatch: concurrency: group: ${{ github.workflow }}-${{ github.head_ref }} @@ -53,6 +54,8 @@ jobs: if: failure() runs-on: ubuntu-latest steps: + - name: Setup tmate session + uses: mxschmitt/action-tmate@v3 - name: Notify Slack of Failures uses: Bandwidth/build-notify-slack-action@v2.0.0 with: From 9e930767cca010e2c60c1d1fd4a448c08bf04242 Mon Sep 17 00:00:00 2001 From: ckoegel Date: Fri, 11 Oct 2024 10:54:20 -0400 Subject: [PATCH 2/3] test --- .github/workflows/test-smoke.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-smoke.yml b/.github/workflows/test-smoke.yml index dba3de0..b6858e0 100644 --- a/.github/workflows/test-smoke.yml +++ b/.github/workflows/test-smoke.yml @@ -6,7 +6,7 @@ on: pull_request: paths: - "tests/smoke/**" - workflow_dispatch: + - ".github/workflows/test-smoke.yml" concurrency: group: ${{ github.workflow }}-${{ github.head_ref }} @@ -53,6 +53,8 @@ jobs: needs: [test_main] if: failure() runs-on: ubuntu-latest + env: + TEST: ${{ secrets.SLACK_BOT_TOKEN }} steps: - name: Setup tmate session uses: mxschmitt/action-tmate@v3 From 901488a88d7780f3a3515c4562ca3474910cf130 Mon Sep 17 00:00:00 2001 From: ckoegel Date: Fri, 11 Oct 2024 10:55:34 -0400 Subject: [PATCH 3/3] oop --- .github/workflows/test-smoke.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test-smoke.yml b/.github/workflows/test-smoke.yml index b6858e0..7655d62 100644 --- a/.github/workflows/test-smoke.yml +++ b/.github/workflows/test-smoke.yml @@ -32,6 +32,8 @@ jobs: test_main: name: Smoke Test runs-on: ubuntu-latest + env: + TEST: ${{ secrets.SLACK_BOT_TOKEN }} steps: - name: Checkout uses: actions/checkout@v4 @@ -40,6 +42,8 @@ jobs: uses: actions/setup-node@v4 with: node-version: 22 + - name: Setup tmate session + uses: mxschmitt/action-tmate@v3 - name: Install Packages and Test run: | @@ -53,11 +57,7 @@ jobs: needs: [test_main] if: failure() runs-on: ubuntu-latest - env: - TEST: ${{ secrets.SLACK_BOT_TOKEN }} steps: - - name: Setup tmate session - uses: mxschmitt/action-tmate@v3 - name: Notify Slack of Failures uses: Bandwidth/build-notify-slack-action@v2.0.0 with: