We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 996d148 commit 2bf380fCopy full SHA for 2bf380f
src/jobs/stalebot.test.ts
@@ -16,7 +16,7 @@ import { triggerStaleBot } from './stalebot';
16
17
const FAKE_MERGE_COMMIT = '12345';
18
19
-describe('Stalebot Tests', function () {
+describe.skip('Stalebot Tests', function () {
20
const org = GETSENTRY_ORG as unknown as MockedGithubOrg;
21
let origRepos;
22
src/jobs/stalebot.ts
@@ -133,6 +133,8 @@ const closeStalePullRequests = async (
133
};
134
135
export const triggerStaleBot = async (org: GitHubOrg, now: moment.Moment) => {
136
+ // TODO: Re-enable stalebot
137
+ return;
138
// Get all open issues and pull requests that are Waiting for Community
139
await Promise.all(
140
org.repos.all.map(
0 commit comments