This repository was archived by the owner on Feb 19, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1818 const pr = context.payload.pull_request;
1919 const login = pr.user.login;
2020
21+ // Skip PRs older than Feb 18, 2026 at 6PM EST (Feb 19, 2026 00:00 UTC)
22+ const cutoff = new Date('2026-02-19T00:00:00Z');
23+ const prCreated = new Date(pr.created_at);
24+ if (prCreated < cutoff) {
25+ console.log(`Skipping: PR #${pr.number} was created before cutoff (${prCreated.toISOString()})`);
26+ return;
27+ }
28+
2129 // Check if author is a team member or bot
2230 if (login === 'opencode-agent[bot]') return;
2331 const { data: file } = await github.rest.repos.getContent({
@@ -157,6 +165,14 @@ jobs:
157165 const pr = context.payload.pull_request;
158166 const login = pr.user.login;
159167
168+ // Skip PRs older than Feb 18, 2026 at 6PM EST (Feb 19, 2026 00:00 UTC)
169+ const cutoff = new Date('2026-02-19T00:00:00Z');
170+ const prCreated = new Date(pr.created_at);
171+ if (prCreated < cutoff) {
172+ console.log(`Skipping: PR #${pr.number} was created before cutoff (${prCreated.toISOString()})`);
173+ return;
174+ }
175+
160176 // Check if author is a team member or bot
161177 if (login === 'opencode-agent[bot]') return;
162178 const { data: file } = await github.rest.repos.getContent({
You can’t perform that action at this time.
0 commit comments