瀏覽代碼

Merge branch '6.2.x' into 6.3.x

Marcus Hert Da Coregio 1 年之前
父節點
當前提交
9791801bc6
共有 1 個文件被更改,包括 1 次插入2 次删除
  1. 1 2
      .github/workflows/mark-duplicate-dependabot-prs.yml

+ 1 - 2
.github/workflows/mark-duplicate-dependabot-prs.yml

@@ -22,10 +22,9 @@ jobs:
       - name: Find PRs
         id: find_duplicates
         env:
-          DEPENDENCY_NAME: ${{ steps.extract.outputs.dependency_name }}
           GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
         run: |
-          PRS=$(gh pr list --search 'milestone:${{ github.event.pull_request.milestone.title }} is:merged in:title "$DEPENDENCY_NAME"' --json number --jq 'map(.number) | join(",")')
+          PRS=$(gh pr list --search 'milestone:${{ github.event.pull_request.milestone.title }} is:merged in:title "${{ steps.extract.outputs.dependency_name }}"' --json number --jq 'map(.number) | join(",")')
           echo "prs=$PRS" >> $GITHUB_OUTPUT
 
       - name: Label Duplicate PRs