Skip to content

Commit 4f24aaf

Browse files
committed
Fix for release branch. Removed trailing space for webhooks to force a release.
1 parent 389b3e2 commit 4f24aaf

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/scripts/get-plugin-slug.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -e
55
BASE_SHA="$1"
66
HEAD_SHA="$2"
77

8-
git fetch --prune --unshallow
8+
git fetch --prune --unshallow 2>/dev/null || git fetch --prune
99

1010
# Get changed files in plugins subdirectories
1111
CHANGED_FILES=$(git diff --name-only "$BASE_SHA" "$HEAD_SHA" | grep '^plugins/[^/]\+/' || true)

plugins/wp-graphql-webhooks/src/Autoloader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,4 +87,4 @@ static function () use ( $error_message ) {
8787
);
8888
}
8989
}
90-
}
90+
}

plugins/wp-graphql-webhooks/src/TypeRegistry.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,4 +87,4 @@ private static function register_types( array $classes_to_register ): void {
8787
self::$registry[] = $class;
8888
}
8989
}
90-
}
90+
}

0 commit comments

Comments
 (0)