You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo "# Stale Repository Report" > final_stale_repos.md
76
+
echo "# Autogenerated Stale Repository Report " > final_stale_repos.md
77
+
echo "### Do not close this issue - it is autogenerated by the `stale repo identifier` action" >> final_stale_repos.md
78
+
echo "### Two thresholds are used - **335** days and **365** days - in accordance with the standard: https://github.com/SovereignCloudStack/standards/blob/main/Standards/scs-0006-v1-organization-management.md" >> final_stale_repos.md
80
79
for file in stale_reports/**/stale_repos_*.md; do
81
80
cat "$file" >> final_stale_repos.md
82
81
echo "" >> final_stale_repos.md
83
82
done
84
83
85
84
- name: Check for the stale report issue
86
85
run: |
87
-
ISSUE_NUMBER=$(gh search issues "Stale repository report" --match title --json number --jq ".[0].number")
86
+
ISSUE_NUMBER=$(gh search issues "Autogenerated Stale Repository Report (DO NOT CLOSE)" --match title --json number --jq ".[0].number")
0 commit comments