From c775c48e5a986336ce1a9205730ab49c28d1dab2 Mon Sep 17 00:00:00 2001 From: Siddharth Kshetrapal Date: Tue, 9 Jul 2024 13:56:56 +0530 Subject: [PATCH] is this the syntax? --- .github/workflows/add_staff_label.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/add_staff_label.yml b/.github/workflows/add_staff_label.yml index 590441060a0..280f4a9d204 100644 --- a/.github/workflows/add_staff_label.yml +++ b/.github/workflows/add_staff_label.yml @@ -16,8 +16,8 @@ jobs: - name: Add label to issue if: ${{ github.event.issue.author_association == 'MEMBER' }} run: | - gh issue edit {{github.event.issue.html_url}} --add-label staff + gh issue edit ${{github.event.issue.html_url}} --add-label staff - name: Add label to pull_request if: ${{ github.event.pull_request.author_association == 'MEMBER' }} run: | - gh pr edit {{github.event.pull_request.html_url}} --add-label staff + gh pr edit ${{github.event.pull_request.html_url}} --add-label staff