Skip to content

Commit ab9f5a8

Browse files
committed
fix
1 parent c5db307 commit ab9f5a8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/verify-pr-title.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ jobs:
1313
env:
1414
PR_TITLE: ${{ github.event.pull_request.title }}
1515
run: |
16-
if [[ ! "$PR_TITLE" =~ ^\[(Integration|Core|Docs)(\]\[.*?\])?\]\ .+ ]]; then
16+
if [[ ! "$PR_TITLE" =~ ^\[(Integration|Core|Docs)\]\ .+ ]]; then
1717
echo "PR title does not match the required convention."
1818
echo "Examples of acceptable titles:"
19-
echo "[Integration][ADO] Fix missing team context for non default teams while ingesting boards"
20-
echo "[Core][Logging] Fix Integration logs not being ingested"
21-
echo "[Core] bump fastapi version"
22-
echo "[Docs] Fix Ocean Denial of service in http-proxy-middleware in docs"
23-
echo "[Integration][AWS] Added support to choose specific regions to query resources from"
19+
echo "[Integration] Resolve missing team context in board ingestion for non-default teams"
20+
echo "[Core] Ensure ingestion of integration logs"
21+
echo "[Core] Upgrade FastAPI version to improve performance and compatibility"
22+
echo "[Docs] Correct documentation on Ocean's denial-of-service vulnerability in http-proxy-middleware"
23+
echo "[Integration] Enable region-specific resource querying support"
2424
exit 1
2525
else
2626
echo "PR title matches the required convention."

0 commit comments

Comments
 (0)