diff --git a/.github/workflows/milestone-checker.yml b/.github/workflows/milestone-checker.yml index 0291e1a3a0..6bfbe72f20 100644 --- a/.github/workflows/milestone-checker.yml +++ b/.github/workflows/milestone-checker.yml @@ -13,12 +13,13 @@ on: permissions: contents: read + statuses: write jobs: # checks that a milestone entry is present for a PR milestone-check: # If there is a `pr/no-milestone` label we ignore this check - if: contains(github.event.pull_request.labels.*.name, 'pr/no-milestone') != 'true' + if: contains(github.event.pull_request.labels.*.name, 'pr/no-milestone') != true runs-on: ${{ fromJSON(vars.RUNNER) }} steps: - name: Checkout Actions