From 81d4e12911a3108dd0da8138ab09cef843213765 Mon Sep 17 00:00:00 2001 From: Borahm Lee Date: Thu, 22 Aug 2024 23:18:50 +0900 Subject: [PATCH] ci: add permissions for pr labels (#354) * ci: add permissions on contents and pull-requests * ci: remove catch block to recognize failure * ci: apply review --- .github/workflows/integration.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/integration.yaml b/.github/workflows/integration.yaml index cff96df39..f924e0c28 100644 --- a/.github/workflows/integration.yaml +++ b/.github/workflows/integration.yaml @@ -13,6 +13,11 @@ jobs: label-lang: runs-on: ubuntu-latest continue-on-error: true + + permissions: + contents: write + pull-requests: write + steps: - name: Checkout code uses: actions/checkout@v4 @@ -81,5 +86,5 @@ jobs: } } - run().catch(err => console.error(err)); + run(); "