From 307dc32b26895cad49aab5672811c0551b456efd Mon Sep 17 00:00:00 2001 From: Franz Busch Date: Thu, 1 Aug 2024 10:03:31 -0700 Subject: [PATCH] Fix the label workflow --- .../action.yml} | 0 .github/workflows/pull_request_label.yml | 6 ++++-- 2 files changed, 4 insertions(+), 2 deletions(-) rename .github/actions/{pull_request_semver_label_checker.yml => pull_request_semver_label_checker/action.yml} (100%) diff --git a/.github/actions/pull_request_semver_label_checker.yml b/.github/actions/pull_request_semver_label_checker/action.yml similarity index 100% rename from .github/actions/pull_request_semver_label_checker.yml rename to .github/actions/pull_request_semver_label_checker/action.yml diff --git a/.github/workflows/pull_request_label.yml b/.github/workflows/pull_request_label.yml index 9a79312849..bd86db662a 100644 --- a/.github/workflows/pull_request_label.yml +++ b/.github/workflows/pull_request_label.yml @@ -1,4 +1,4 @@ -name: PR +name: PR label on: pull_request: @@ -10,5 +10,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 1 steps: + - name: Checkout repository + uses: actions/checkout@v4 - name: Check for semver label - uses: ./github/actions/pull_request_label_checker.yml + uses: ".github/actions/pull_request_semver_label_checker/action.yml"