mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-06-03 14:19:36 +02:00
- close-new-script-prs: trigger on added script file OR label, exempt by author_association (OWNER/MEMBER/COLLABORATOR) instead of team API - close_issue_in_dev: match VED issues by derived slug, close all matches - lock-issue: lock closed issues after 7 days instead of 3 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
78 lines
2.7 KiB
YAML
Generated
78 lines
2.7 KiB
YAML
Generated
name: Lock closed issues
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * *" # Run daily at midnight
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
lock:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Lock old issues and PRs
|
|
uses: actions/github-script@v7
|
|
with:
|
|
script: |
|
|
const daysBeforeLock = 7;
|
|
const lockDate = new Date();
|
|
lockDate.setDate(lockDate.getDate() - daysBeforeLock);
|
|
|
|
// Exclude patterns (case-insensitive)
|
|
const excludePatterns = [
|
|
/automated pr/i,
|
|
/\[bot\]/i,
|
|
/dependabot/i
|
|
];
|
|
|
|
// Search for closed, unlocked issues older than 7 days (paginated, oldest first)
|
|
let page = 1;
|
|
let totalLocked = 0;
|
|
|
|
while (true) {
|
|
const issues = await github.rest.search.issuesAndPullRequests({
|
|
q: `repo:${context.repo.owner}/${context.repo.repo} is:closed is:unlocked updated:<${lockDate.toISOString().split('T')[0]}`,
|
|
sort: 'updated',
|
|
order: 'asc',
|
|
per_page: 100,
|
|
page: page
|
|
});
|
|
|
|
if (issues.data.items.length === 0) break;
|
|
|
|
console.log(`Page ${page}: ${issues.data.items.length} items (total available: ${issues.data.total_count})`);
|
|
|
|
for (const item of issues.data.items) {
|
|
// Skip excluded items
|
|
const shouldExclude = excludePatterns.some(pattern => pattern.test(item.title));
|
|
if (shouldExclude) {
|
|
console.log(`Skipped #${item.number}: "${item.title}" (matches exclude pattern)`);
|
|
continue;
|
|
}
|
|
|
|
try {
|
|
// Lock the issue/PR silently
|
|
await github.rest.issues.lock({
|
|
...context.repo,
|
|
issue_number: item.number,
|
|
lock_reason: 'resolved'
|
|
});
|
|
|
|
totalLocked++;
|
|
console.log(`Locked #${item.number} (${item.pull_request ? 'PR' : 'Issue'})`);
|
|
} catch (error) {
|
|
console.log(`Failed to lock #${item.number}: ${error.message}`);
|
|
}
|
|
}
|
|
|
|
page++;
|
|
|
|
// GitHub search API limit: max 10000 results (100 pages * 100) - temporarily increased
|
|
if (page > 100) break;
|
|
}
|
|
|
|
console.log(`Total locked: ${totalLocked} issues/PRs`);
|