From 98e49f9b8373d959d89a0f9a97377ee767ed9da1 Mon Sep 17 00:00:00 2001 From: Vincent Amstoutz Date: Thu, 19 Dec 2024 10:20:22 +0100 Subject: [PATCH] ci: fix failed to call GitHub Status API --- .github/workflows/lint.yaml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 2c1de09df..e6cf94936 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -7,14 +7,15 @@ on: push: branches: - main -permissions: - contents: read - packages: read - statuses: write +permissions: {} jobs: build: name: Lint Code Base runs-on: ubuntu-latest + permissions: + contents: read + packages: read + statuses: write steps: - name: Checkout Code