Skip to content

Commit 2bf380f

Browse files
chore(stalebot): Disable stalebot (#927)
* disable stalebot * skip tests
1 parent 996d148 commit 2bf380f

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/jobs/stalebot.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import { triggerStaleBot } from './stalebot';
1616

1717
const FAKE_MERGE_COMMIT = '12345';
1818

19-
describe('Stalebot Tests', function () {
19+
describe.skip('Stalebot Tests', function () {
2020
const org = GETSENTRY_ORG as unknown as MockedGithubOrg;
2121
let origRepos;
2222

src/jobs/stalebot.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,8 @@ const closeStalePullRequests = async (
133133
};
134134

135135
export const triggerStaleBot = async (org: GitHubOrg, now: moment.Moment) => {
136+
// TODO: Re-enable stalebot
137+
return;
136138
// Get all open issues and pull requests that are Waiting for Community
137139
await Promise.all(
138140
org.repos.all.map(

0 commit comments

Comments
 (0)