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
73
+
echo "# Autogenerated Stale Repository Report " > final_stale_repos.md
74
+
echo "### Do not close this issue - it is autogenerated by the `stale repo identifier` action" >> final_stale_repos.md
75
+
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
76
for file in stale_reports/**/stale_repos_*.md; do
81
77
cat "$file" >> final_stale_repos.md
82
78
echo "" >> final_stale_repos.md
83
79
done
84
80
85
81
- name: Check for the stale report issue
86
82
run: |
87
-
ISSUE_NUMBER=$(gh search issues "Stale repository report" --match title --json number --jq ".[0].number")
83
+
ISSUE_NUMBER=$(gh search issues "Autogenerated Stale Repository Report (DO NOT CLOSE)" --match title --json number --jq ".[0].number")
0 commit comments