diff --git a/.github/workflows/validate_pr.yml b/.github/workflows/validate_pr.yml index 1ffccaf96a..8c9ae1688f 100644 --- a/.github/workflows/validate_pr.yml +++ b/.github/workflows/validate_pr.yml @@ -21,21 +21,3 @@ jobs: } console.log('✅ PR title format is valid'); - - # - name: Check Milestone Assignment - # uses: actions/github-script@v7 - # with: - # script: | - # // Fetch the PR data explicitly to ensure we have milestone info - # const { data: pr } = await github.rest.pulls.get({ - # owner: context.repo.owner, - # repo: context.repo.repo, - # pull_number: context.payload.pull_request.number - # }); - - # if (!pr.milestone) { - # core.setFailed('PR must have a milestone assigned'); - # return; - # } - - # console.log(`✅ Milestone "${pr.milestone.title}" is assigned`);