From a95e31fb6398714d605ea14df4e207daa459da2a Mon Sep 17 00:00:00 2001 From: eyhn Date: Wed, 21 Sep 2022 16:49:13 +0800 Subject: [PATCH] ci: create lab action --- .github/workflows/lab.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/lab.yaml diff --git a/.github/workflows/lab.yaml b/.github/workflows/lab.yaml new file mode 100644 index 000000000..c8e6ae301 --- /dev/null +++ b/.github/workflows/lab.yaml @@ -0,0 +1,15 @@ +name: Take Lab Snapshot + +on: [deployment_status] + +jobs: + lab: + # only runs this job on successful deploy + if: github.event.deployment_status.state == 'success' + runs-on: ubuntu-latest + steps: + - name: Run lab + uses: EYHN/perfsee-action-test@v1.11 + with: + project: perfsee + token: ${{ secrets.PERFSEE_TOKEN }}