Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(IDX): remove checks for old deprecated checks #4090

Merged
merged 1 commit into from
Feb 24, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 0 additions & 22 deletions .github/workflows/ci-pr-title-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,25 +20,3 @@ jobs:
uses: ytanikin/pr-conventional-commits@8d258b54939f6769fcd935a52b96d6b0383a00c5 # v1.2.0
with:
task_types: '["feat","fix","docs","test","ci","refactor","perf","chore","revert"]'

pr-title-check:
name: Check PR Title for Deprecated Flags
runs-on: ubuntu-latest
steps:
- name: Check PR Title
id: check-pr-title
env:
CI_PULL_REQUEST_TITLE: ${{ github.event.pull_request.title }}
run: |
if [[ $CI_PULL_REQUEST_TITLE == *"[S3_UPLOAD]"* ]]; then
echo "Error: The [S3_UPLOAD] flag has been deprecated. Please use [RUN_ALL_BAZEL_TARGETS] instead. It will automatically upload to S3."
exit 1
fi
if [[ $CI_PULL_REQUEST_TITLE == *"[override-didc-check]"* ]]; then
echo "Error: The [override-didc-check] flag in the PR TITLE has been deprecated. Please use the PR label instead."
exit 1
fi
if [[ $CI_PULL_REQUEST_TITLE == *"[RUN_ALL_BAZEL_TARGETS]"* ]]; then
echo "Error: The [RUN_ALL_BAZEL_TARGETS] flag in the PR TITLE has been deprecated. Please use the PR label instead. See .github/CI_README.md."
exit 1
fi