From 6102363fb47b3020c9307dd78f93a659e344b826 Mon Sep 17 00:00:00 2001 From: Claudio Ortolina Date: Thu, 26 Dec 2024 14:40:12 +0000 Subject: [PATCH] Add GH Action to manually very production environment --- .github/workflows/verify.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/verify.yml diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml new file mode 100644 index 00000000..ada3f464 --- /dev/null +++ b/.github/workflows/verify.yml @@ -0,0 +1,14 @@ +name: Verify +on: workflow_dispatch + +jobs: + verify: + name: Verify + runs-on: ubuntu-24.04 + environment: production + steps: + - uses: actions/checkout@v4 + - uses: gacts/install-hurl@v1 + - run: hurl --test test/prod.hurl + env: + HURL_api_token: ${{ secrets.API_TOKEN }}