We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a329c74 commit f9268afCopy full SHA for f9268af
1 file changed
.github/workflows/weekly-docs-feedback.yml
@@ -26,9 +26,8 @@ jobs:
26
run: |
27
set -eo pipefail # Ensure the script fails on any command error
28
echo "## PRs that need attention" > feedback.md
29
- export LABEL="docs-maintainer" # Replace with your specific label
30
- echo "Listing PRs with label: $LABEL" >> feedback.md
31
- gh pr list --label "$LABEL" --json title,url --jq '.[] | "\(.title) - \(.url)"' >> feedback.md
+ echo "Listing PRs with label: docs-maintainer" >> feedback.md
+ gh pr list --label docs-maintainer --json title,url --jq '.[] | "\(.title) - \(.url)"' >> feedback.md
32
33
gh pr list --label "$LABEL" --json title,url --jq '.[] | "\(.title) - \(.url)"'
34
- name: Collect feedback
0 commit comments