From f96ac63b57cb2bb020c059c9873d402ad35456f7 Mon Sep 17 00:00:00 2001 From: Brian Duranleau Date: Thu, 5 Sep 2024 12:29:09 -0500 Subject: [PATCH] fix: use cli for checkout --- .github/workflows/issue-comment.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/issue-comment.yml b/.github/workflows/issue-comment.yml index 1ba0bea8d..ba345e98a 100644 --- a/.github/workflows/issue-comment.yml +++ b/.github/workflows/issue-comment.yml @@ -23,12 +23,6 @@ jobs: env: GH_TOKEN: ${{ secrets.token }} steps: - - name: Checkout newrelic-php-agent code - uses: actions/checkout@v4 - with: - path: php-agent - repository: ${{ inputs.origin }}/newrelic-php-agent - ref: ${{ inputs.ref }} - name: respond to issue run: | - gh issue comment ${{ inputs.issue-number }} --body "${{ inputs.message }}" + gh issue -R ${{ github.repository }} comment ${{ inputs.issue-number }} --body "${{ inputs.message }}"