From 646bfd37bd47d48860fe8ac1b3d30210d2336e82 Mon Sep 17 00:00:00 2001 From: Eric Allam Date: Mon, 9 Oct 2023 18:28:49 +0100 Subject: [PATCH] Pushing a commit to the branch so I can open a PR (#592) * Pushing a commit to the branch so I can open a PR * Couple improvements to the pr checks workflow --- .github/workflows/pr_checks.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pr_checks.yml b/.github/workflows/pr_checks.yml index 7ad44f69d..6a1cd2acc 100644 --- a/.github/workflows/pr_checks.yml +++ b/.github/workflows/pr_checks.yml @@ -7,23 +7,25 @@ on: paths-ignore: - "**.md" - ".github/CODEOWNERS" + - ".github/ISSUE_TEMPLATE/**" + +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: true permissions: contents: read id-token: write jobs: - type-check: - name: "ʦ TypeScript" + typecheck: uses: ./.github/workflows/typecheck.yml secrets: inherit - unitTests: - name: "🧪 Unit Tests" + units: uses: ./.github/workflows/unit-tests.yml secrets: inherit e2e: - name: "🧪 E2E Tests" uses: ./.github/workflows/e2e.yml secrets: inherit