From f9569c08f1b24cc9123c5e25bbacfafdb7206196 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Dequ=C3=A8nes=20=28Duck=29?= Date: Fri, 15 Dec 2023 17:40:34 +0900 Subject: [PATCH] gh: enable manual workflow trigger --- .github/workflows/tests.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 49e5626..5da9095 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -2,6 +2,7 @@ name: Zones check on: + workflow_dispatch: push: branches: - main @@ -15,8 +16,12 @@ jobs: build: runs-on: ubuntu-latest steps: + # first load the base branch - uses: actions/checkout@v4 with: + ref: ${{ github.event.pull_request.head.sha }} fetch-depth: 0 + # and then the PR commit + - uses: actions/checkout@v4 - uses: OSAS/dns4tenants-validation@main