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
Have you read our [Contributing guide](https://github.com/cloudflare/workers-sdk/blob/main/CONTRIBUTING.md)?
26
22
In particular, for non-trivial changes, please always engage on the issue or create a discussion or feature request issue first before writing your code.
27
23
-->
28
-
29
-
<!--
30
-
**Note for PR author:**
31
-
We want to celebrate and highlight awesome PR review!
32
-
If you think this PR received a particularly high-caliber review, please assign it the label `highlight pr review` so future reviewers can take inspiration and learn from it.
"All TODO checkboxes in your PR description must be unchecked before merging",
43
40
"Your PR must include tests, or provide justification for why no tests are required",
44
41
"Your PR must run E2E tests, or provide justification for why running them is not required",
45
-
"Your PR must include a changeset, or provide justification for why no changesets are required",
42
+
"Your PR doesn't include a changeset. Either include one (following the instructions in CONTRIBUTING.md) or add the 'no-changeset-required' label to bypass this check. Most PRs should have a changeset, so only bypass this check if you're sure that your change doesn't need one: see https://github.com/cloudflare/workers-sdk/blob/main/CONTRIBUTING.md#changesets for more details.",
46
43
"Your PR must include documentation (in the form of a link to a Cloudflare Docs issue or PR), or provide justification for why no documentation is required",
47
44
]
48
45
`);
49
46
});
50
47
48
+
it("should bypass changesets check with label",()=>{
49
+
expect(
50
+
validateDescription(
51
+
"",
52
+
`## What this PR solves / how to test
53
+
54
+
Fixes #[insert GH or internal issue number(s)].
55
+
56
+
## Author has addressed the following
57
+
58
+
- Tests
59
+
- [ ] TODO (before merge)
60
+
- [x] Tests included
61
+
- [ ] Tests not necessary because:
62
+
- E2E Tests CI Job required? (Use "e2e" label or ask maintainer to run separately)
"Your PR must include a changeset, or provide justification for why no changesets are required"
84
+
"Your PR doesn't include a changeset. Either include one (following the instructions in CONTRIBUTING.md) or add the 'no-changeset-required' label to bypass this check. Most PRs should have a changeset, so only bypass this check if you're sure that your change doesn't need one: see https://github.com/cloudflare/workers-sdk/blob/main/CONTRIBUTING.md#changesets for more details."
0 commit comments