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
message += '🔄 If you are attempting to update your CIPP repo please follow the instructions at: https://docs.cipp.app/setup/self-hosting-guide/updating ';
34
+
// Check if the fork has open PRs (indicates pull bot or similar is active)
message += '🔄 If you are attempting to update your CIPP-API repo please follow the instructions at: https://docs.cipp.app/setup/self-hosting-guide/updating. Are you a sponsor? Contact the helpdesk for direct assistance with updating to the latest version.';
53
+
54
+
if (openPRs.length > 0) {
55
+
message += ` It looks like you may already have a pending update PR on your fork — check your [open pull requests](${forkPullsUrl}) to accept it.`;
56
+
} else {
57
+
message += ` You can enable [Pull Bot](https://github.com/apps/pull) or [Repo Sync](https://github.com/apps/repo-sync) to automatically keep your fork up to date.`;
58
+
}
35
59
message += '\n\n';
36
60
37
61
// Check if PR is targeting main/master
@@ -40,20 +64,20 @@ jobs:
40
64
}
41
65
42
66
// Check if PR is from a fork's main/master branch
43
-
if (context.payload.pull_request.head.repo.fork &&
67
+
if (context.payload.pull_request.head.repo.fork &&
message += '⚠️ This PR cannot be merged because it originates from your fork\'s main/master branch. If you are attempting to contribute code please PR from your dev branch or another non-main/master branch.\n\n';
46
70
}
47
71
48
-
message += '🔒 This PR will now be automatically closed due to the above violation(s).';
49
-
72
+
message += '🔒 This PR will now be automatically closed due to the above rules.';
Copy file name to clipboardExpand all lines: Modules/CIPPActivityTriggers/Public/Entrypoints/Activity Triggers/Domain Analyser/Push-DomainAnalyserDomain.ps1
+21Lines changed: 21 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -62,6 +62,7 @@ function Push-DomainAnalyserDomain {
62
62
MSCNAMEDKIMSelectors=''
63
63
EnterpriseEnrollment=''
64
64
EnterpriseRegistration=''
65
+
AutoDiscover=''
65
66
Score=''
66
67
MaximumScore=160
67
68
ScorePercentage=''
@@ -293,6 +294,26 @@ function Push-DomainAnalyserDomain {
Copy file name to clipboardExpand all lines: Modules/CIPPActivityTriggers/Public/Entrypoints/Activity Triggers/Graph Requests/Push-ListGraphRequestQueue.ps1
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -63,6 +63,15 @@ function Push-ListGraphRequestQueue {
0 commit comments