From 3d4792282c47974d27f29ac8ba7a62e4ae6a0771 Mon Sep 17 00:00:00 2001 From: Peter Bukva Date: Thu, 31 Oct 2024 03:01:57 +0000 Subject: [PATCH] Updating labeler action config to use newly required checkout step --- .github/workflows/labeler.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index 0523bd2b5..6fb4f8dc7 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -6,7 +6,9 @@ jobs: labeler: runs-on: ubuntu-latest steps: - - uses: actions/labeler@main + - name: Checkout + uses: actions/checkout@v4 + - name: Label PR + uses: actions/labeler@main with: repo-token: "${{ secrets.GITHUB_TOKEN }}" - configuration-path: ".github/labeler.yml"