You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/label-actions.yml
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -743,3 +743,15 @@
743
743
This improves the maintainers' time to triage, as key information is clearly indicated in the format we expect.
744
744
745
745
Thanks, the Renovate team
746
+
747
+
'auto:monorepos-preset':
748
+
comment: >
749
+
Hi there,
750
+
751
+
When adding a new monorepo to the `monorepo.json`, please note that:
752
+
753
+
- [ ] Any dependency update(s) from this monorepo will be upgraded in a single PR
754
+
- [ ] If the dependencies are not all versioned identically (i.e. they're all at `16.0.5` and a release in one requires all being updated) this will lead to [Immortal PRs](https://docs.renovatebot.com/key-concepts/pull-requests/#immortal-prs)
755
+
- This is not be the intended behaviour, and is generally not recommended by Renovate maintainers. We only accept it if the packages strictly need to be updated together.
756
+
757
+
It is worth both the author of the PR and the reviewer confirming that this is the intended behaviour.
// GitHub Actions adding the label won't trigger dessant/label-actions, so we need to do it manually
49
+
await github.rest.issues.createComment({
50
+
owner: context.repo.owner,
51
+
repo: context.repo.repo,
52
+
issue_number: context.payload.issue.number,
53
+
body: `**Please create a GitHub Discussion instead of this issue.**\n\nIssues in this repository are for creation by Maintainers only - please create a GitHub Discussion instead.\nIf needed, a Renovate maintainer will create an Issue after your Discussion been triaged and confirmed.\n\nThis Issue will now be closed and locked. We may later batch-delete this issue. This way we keep Issues actionable, and free of duplicates or wrong bug reports.\n\nThanks, the Renovate team`,
54
+
});
55
+
56
+
await github.rest.issues.update({
57
+
owner: context.repo.owner,
58
+
repo: context.repo.repo,
59
+
issue_number: context.payload.issue.number,
60
+
state: 'closed',
61
+
state_reason: 'not_planned',
62
+
});
63
+
64
+
core.info(`Commented and closed issue as not planned`);
65
+
} else {
66
+
core.info(`Skipping label — author has ${roleName} access`);
0 commit comments