Add . at end of domain patterns

This commit is contained in:
Varun Sharma 2024-07-19 16:18:51 -07:00
commit 0fe20c9a7d
No known key found for this signature in database
GPG key ID: CE30C1F427CE6272
7 changed files with 11 additions and 11 deletions

4
dist/index.js vendored
View file

@ -2871,8 +2871,8 @@ const processLogLine = (line, tableEntries) => {
process &&
domain &&
ipAddress &&
!domain.endsWith(".actions.githubusercontent.com") &&
!domain.endsWith(".blob.core.windows.net")) {
!domain.endsWith(".actions.githubusercontent.com.") &&
!domain.endsWith(".blob.core.windows.net.")) {
const status = ipAddress.startsWith("54.185.253.63")
? "❌ Blocked"
: "✅ Allowed";

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

4
dist/post/index.js vendored
View file

@ -2873,8 +2873,8 @@ const processLogLine = (line, tableEntries) => {
process &&
domain &&
ipAddress &&
!domain.endsWith(".actions.githubusercontent.com") &&
!domain.endsWith(".blob.core.windows.net")) {
!domain.endsWith(".actions.githubusercontent.com.") &&
!domain.endsWith(".blob.core.windows.net.")) {
const status = ipAddress.startsWith("54.185.253.63")
? "❌ Blocked"
: "✅ Allowed";

File diff suppressed because one or more lines are too long

4
dist/pre/index.js vendored
View file

@ -71281,8 +71281,8 @@ const processLogLine = (line, tableEntries) => {
process &&
domain &&
ipAddress &&
!domain.endsWith(".actions.githubusercontent.com") &&
!domain.endsWith(".blob.core.windows.net")) {
!domain.endsWith(".actions.githubusercontent.com.") &&
!domain.endsWith(".blob.core.windows.net.")) {
const status = ipAddress.startsWith("54.185.253.63")
? "❌ Blocked"
: "✅ Allowed";

File diff suppressed because one or more lines are too long

View file

@ -41,8 +41,8 @@ export const processLogLine = (
process &&
domain &&
ipAddress &&
!domain.endsWith(".actions.githubusercontent.com") &&
!domain.endsWith(".blob.core.windows.net")
!domain.endsWith(".actions.githubusercontent.com.") &&
!domain.endsWith(".blob.core.windows.net.")
) {
const status = ipAddress.startsWith("54.185.253.63")
? "❌ Blocked"