Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Tankilevitch committed Nov 10, 2024
1 parent c5db307 commit ab9f5a8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/verify-pr-title.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ jobs:
env:
PR_TITLE: ${{ github.event.pull_request.title }}
run: |
if [[ ! "$PR_TITLE" =~ ^\[(Integration|Core|Docs)(\]\[.*?\])?\]\ .+ ]]; then
if [[ ! "$PR_TITLE" =~ ^\[(Integration|Core|Docs)\]\ .+ ]]; then
echo "PR title does not match the required convention."
echo "Examples of acceptable titles:"
echo "[Integration][ADO] Fix missing team context for non default teams while ingesting boards"
echo "[Core][Logging] Fix Integration logs not being ingested"
echo "[Core] bump fastapi version"
echo "[Docs] Fix Ocean Denial of service in http-proxy-middleware in docs"
echo "[Integration][AWS] Added support to choose specific regions to query resources from"
echo "[Integration] Resolve missing team context in board ingestion for non-default teams"
echo "[Core] Ensure ingestion of integration logs"
echo "[Core] Upgrade FastAPI version to improve performance and compatibility"
echo "[Docs] Correct documentation on Ocean's denial-of-service vulnerability in http-proxy-middleware"
echo "[Integration] Enable region-specific resource querying support"
exit 1
else
echo "PR title matches the required convention."
Expand Down

0 comments on commit ab9f5a8

Please sign in to comment.