Skip to content

Commit d167205

Browse files
authored
chore: Remove wontfix label from Stalebot (#1607)
Similar to parse-community/parse-server#6810 Fixes labels, allow stalebot for only issues.
1 parent 6726f23 commit d167205

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

.github/stale.yml

+9-6
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,18 @@ daysUntilStale: 45
44
daysUntilClose: 7
55
# Issues with these labels will never be considered stale
66
exemptLabels:
7-
- pinned
8-
- security
9-
- good-first-pr
10-
- up-for-grabs
7+
- bug
118
- enhancement
9+
- feature request
10+
- good first pr
1211
- help wanted
13-
- bug
12+
- pinned
13+
- security
14+
- up for grabs
1415
# Label to use when marking an issue as stale
15-
staleLabel: wontfix
16+
staleLabel: stale
17+
# Limit to only `issues` not `pulls`
18+
only: issues
1619
# Comment to post when marking an issue as stale. Set to `false` to disable
1720
markComment: >
1821
This issue has been automatically marked as stale because it has not had

src/lib/tests/e2e/dashboard.e2e.test.js

-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ describe('dashboard e2e', () => {
3939

4040
await page.goto(`http://localhost:5051${mount}`);
4141
await page.waitForSelector('#browser_mount');
42-
console.log(page.url());
4342
expect(page.url().indexOf(`http://localhost:5051${mount}/apps`)).toBe(0);
4443

4544
await page.close();

0 commit comments

Comments
 (0)