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
# Gates the merger of PRs as a pre-requisite. Runs when `/ci ngo` or `/ci ignore` is present as an issue comment
45
-
# Notice that I needed this job to do "something" and that's why there is a placeholder GitHub action used
46
-
# TODO: In the future we could have comment like "docs" or "project" to run a specific subset of tests
47
-
check_pr_issue_comments_for_trigger_keywords:
48
-
name: Check PR for trigger comments of ngo or ignore. For example /ci ngo
49
-
agent:
50
-
type: shell
51
-
commands:
52
-
- echo "This is a placeholder job. It exists only to gate PR merges based on issue comments"
53
-
triggers:
54
-
expression: |-
55
-
pull_request.comment eq "ngo" OR
56
-
pull_request.comment eq "ignore"
57
-
58
44
59
45
# Run all relevant tasks when a pull request targeting the develop or release branch is created or updated.
60
46
# In order to have better coverage we run desktop standalone tests with different configurations which allows to mostly cover for different platforms, scripting backends and editor versions.
@@ -82,9 +68,8 @@ pull_request_trigger:
82
68
# TODO: consider setting up and running tests from Examples/
83
69
# TODO: or docs only changes are spelling/link check
84
70
expression: |-
85
-
pull_request.comment eq "ngo" AND
86
-
(pull_request.changes.any match "com.unity.netcode.gameobjects/**" OR
87
-
pull_request.changes.any match "testproject/**")
71
+
pull_request.changes.any match "com.unity.netcode.gameobjects/**" OR
0 commit comments