From 3e3b83e3d34feef6eddc07bcdf7f2318a0d21d6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20M=C3=BCller?= Date: Tue, 19 Dec 2023 15:47:21 +0100 Subject: [PATCH] Update check_application_document.yml Fix labeler --- .github/workflows/check_application_document.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/check_application_document.yml b/.github/workflows/check_application_document.yml index 7e2afb0f6e9..b66ca5e1389 100644 --- a/.github/workflows/check_application_document.yml +++ b/.github/workflows/check_application_document.yml @@ -20,16 +20,26 @@ jobs: filter: 'applications/*.md' format: 'csv' - parse_document: + add_label: needs: get_filename if: needs.get_filename.outputs.filename runs-on: ubuntu-latest + permissions: + pull-requests: write steps: - name: add admin-review label uses: actions-ecosystem/action-add-labels@v1 with: labels: admin-review github_token: ${{ secrets.GITHUB_TOKEN }} + + parse_document: + needs: get_filename + if: needs.get_filename.outputs.filename + runs-on: ubuntu-latest + permissions: + pull-requests: write + steps: - name: Checkout uses: actions/checkout@v2 - name: Parse application file