We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d27b737 commit 81d0db2Copy full SHA for 81d0db2
.github/workflows/reassign-copilot-commits.yml
@@ -44,7 +44,8 @@ jobs:
44
GH_TOKEN: ${{ secrets.GH_PAT }}
45
run: |
46
COMMITS=$(gh pr view $PR_NUMBER --json commits -q '.commits[].oid')
47
- echo "COMMITS=$COMMITS" >> $GITHUB_ENV
+ COMMITS_CSV=$(echo "$COMMITS" | paste -sd, -)
48
+ echo "COMMITS=$COMMITS_CSV" >> $GITHUB_ENV
49
echo "$COMMITS" > commits.txt
50
51
- name: Check for Copilot as author
0 commit comments