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/workflows/pr-description-validation.yml
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,7 @@ on:
14
14
branches:
15
15
- develop
16
16
- develop-2.0.0
17
+
- develop-3.x.x
17
18
- release/*
18
19
19
20
jobs:
@@ -29,14 +30,14 @@ jobs:
29
30
script: |
30
31
const pr = context.payload.pull_request;
31
32
const body = pr.body || '';
32
-
33
+
33
34
// List of users to skip description validation
34
35
// This should be automations where we don't care that much about the description format
35
36
const skipUsersPrefixes = [
36
37
'unity-renovate',
37
38
'svc-'
38
39
];
39
-
40
+
40
41
// If PR author is in the skip list, exit early
41
42
const author = pr.user.login;
42
43
console.log(`PR author: ${author}`);
@@ -49,7 +50,7 @@ jobs:
49
50
const requiredSections = [
50
51
{
51
52
header: '## Backports',
52
-
description: 'PR description must include a "## Backports" section. Please add this section and provide information about this PR backport to develop or develop-2.0.0 branch respectively or explain why backport is not needed.'
53
+
description: 'PR description must include a "## Backports" section. Please add this section and provide information about this PR backport to develop, develop-2.0.0 or develop-3.x.x branch respectively or explain why backport is not needed.'
Copy file name to clipboardExpand all lines: .github/workflows/pr-supervisor.yaml
+13-12Lines changed: 13 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
# We are using https://cli.github.com/manual/gh_pr_checks
3
3
# The aim is to ensure that conditionally triggered Yamato jobs are completed successfully before allowing merges
4
4
5
-
# This job will be required in branch protection rules for develop, develop-2.0.0, and release/* branches. It's only goal will be to ensure that Yamato jobs are completed successfully before allowing Pr to merge.
5
+
# This job will be required in branch protection rules for develop, develop-2.0.0, develop-3.x.x, and release/* branches. It's only goal will be to ensure that Yamato jobs are completed successfully before allowing Pr to merge.
6
6
# Note that conditional jobs will have 30s to show which is always the cas since they are showing up as soon as in distribution stage.
Copy file name to clipboardExpand all lines: .yamato/_triggers.yml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@
17
17
# 1) Minimal PR checks that run on all PRs (even if only docs are changed)
18
18
# 2) More extensive pr_code_changes_checks that run if code is changed. This test validates Standards, Package tests, Project tests and Desktop standalone tests to ensure that main platforms are covered
19
19
# By default pr_minimal_required_checks it's triggered if
20
-
# 1) PR targets develop, develop-2.0.0 or release branches
20
+
# 1) PR targets develop, develop-2.0.0, develop-3.x.x or release branches
21
21
# 2) PR is not a draft
22
22
# Then pr_code_changes_checks it's triggered if the same conditions apply plus:
23
23
# 1) PR changes code in com.unity.netcode.gameobjects package (Editor, Runtime or Tests folders) or in testproject folder or package.json file
@@ -76,11 +76,11 @@ pr_code_changes_checks:
76
76
# Run API validation to early-detect all new APIs that would force us to release new minor version of the package. Note that for this to work the package version in package.json must correspond to "actual package state" which means that it should be higher than last released version
77
77
- .yamato/vetting-test.yml#vetting_test
78
78
79
-
# Run package EditMode and Playmode package tests on trunk and an older supported editor (6000.0)
79
+
# Run package EditMode and Playmode package tests on trunk and an older supported editor (6000.3)
0 commit comments