From 8ef5eae22aca79d88790d86884d5d15078ebbbc0 Mon Sep 17 00:00:00 2001 From: TheJulianJES Date: Mon, 18 Aug 2025 11:45:13 +0200 Subject: [PATCH] Fix restrict-task-creation workflow (#6105) --- .github/workflows/restrict-task-creation.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/restrict-task-creation.yml b/.github/workflows/restrict-task-creation.yml index 8859f960c..6b3b1374d 100644 --- a/.github/workflows/restrict-task-creation.yml +++ b/.github/workflows/restrict-task-creation.yml @@ -9,7 +9,7 @@ jobs: check-authorization: runs-on: ubuntu-latest # Only run if this is a Task issue type (from the issue form) - if: github.event.issue.issue_type == 'Task' + if: github.event.issue.type.name == 'Task' steps: - name: Check if user is authorized uses: actions/github-script@v7