From a440280369a1b1913dfddfadf5c22a332403b7ca Mon Sep 17 00:00:00 2001 From: thomas Date: Tue, 21 May 2024 21:37:32 +0200 Subject: [PATCH] fix: github action --- .github/workflows/label-issue-update.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/label-issue-update.yml b/.github/workflows/label-issue-update.yml index 2386629..a75ba62 100644 --- a/.github/workflows/label-issue-update.yml +++ b/.github/workflows/label-issue-update.yml @@ -8,8 +8,8 @@ jobs: update_labels: runs-on: ubuntu-latest if: | - contains(github.event.issue.labels.*.name, 'sponsor') || - contains(github.event.issue.labels.*.name, 'contributor') + contains(github.event.pull_request.labels.*.name, 'sponsor') || + contains(github.event.pull_request.labels.*.name, 'contributor') steps: - name: checkout uses: actions/checkout@v2