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
- Allow GitHub Actions to create and approve pull requests: UNCHECKED
25
19
26
-
## Branch protections
27
-
28
-
The order of branch protection rules
29
-
[can be important](https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/managing-a-branch-protection-rule#about-branch-protection-rules).
30
-
The branch protection rules below should be added before the `**/**` branch protection rule
31
-
(this may require deleting the `**/**` rule and recreating it at the end).
32
-
33
-
### `main`
34
-
35
-
- Require branches to be up to date before merging: UNCHECKED
36
-
37
-
(PR jobs take too long, and leaving this unchecked has not been a significant problem)
38
-
39
-
- Status checks that are required:
40
-
41
-
- EasyCLA
42
-
- required-status-check
43
-
- gradle-wrapper-validation
44
-
- CodeQL
45
-
46
-
### `release/*`
47
-
48
-
Same settings as above for [`main`](#main).
49
-
50
-
### `v0.*` and `v1.*` (old-style release branches)
51
-
52
-
- Lock branch: CHECKED
53
-
54
-
- Do not allow bypassing the above settings: CHECKED
55
-
56
-
### `cloudfoundry`
57
-
58
-
Same settings as above for [`main`](#main),
59
-
except for the `required-status-check` required status check.
60
-
61
-
### `renovate/**/*` and `otelbot/**/*`
62
-
63
-
Same settings as
64
-
for [`dependabot/**/*`](https://github.com/open-telemetry/community/blob/main/docs/how-to-configure-new-repository.md#branch-protection-rule-dependabot)
65
-
66
-
### `gh-pages`
67
-
68
-
- Everything UNCHECKED
69
-
70
-
(This branch is currently only used for directly pushing benchmarking results from the
0 commit comments