We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 027980f + 92792a5 commit 12c4353Copy full SHA for 12c4353
1 file changed
.github/workflows/weekly-docs-feedback.yml
@@ -78,6 +78,18 @@ jobs:
78
| jq -r '.searches | to_entries[] | "- [ ] \(.value.search)", " failures this week: \(.value.count)"' \
79
>> feedback.md
80
81
+ - name: Add Dependabot reminder for docs
82
+ if: always()
83
+ run: |
84
+ set -eo pipefail # Ensure the script fails on any command error
85
+ manual_dependabot_url="https://github.com/${GITHUB_REPOSITORY}/security/dependabot?q=is%3Aopen+sort%3Anewest+docs"
86
+
87
+ echo " " >> feedback.md
88
+ echo "## Dependabot alerts reminder" >> feedback.md
89
+ echo "- [ ] Check open Dependabot alerts for docs:" >> feedback.md
90
+ echo " ${manual_dependabot_url}" >> feedback.md
91
92
93
- name: Create issue from file
94
if: always()
95
id: weekly-feedback-report
0 commit comments