From 634997bf38916abdaf014b0438ea3b9a5d01882b Mon Sep 17 00:00:00 2001 From: Daphne Yang Date: Fri, 24 May 2024 16:18:29 -0400 Subject: [PATCH] fix: new-feature no longer needs to depend on check-feature-request --- .github/workflows/validateUpdatedIssues.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/validateUpdatedIssues.yml b/.github/workflows/validateUpdatedIssues.yml index 9590e542..18a756f7 100644 --- a/.github/workflows/validateUpdatedIssues.yml +++ b/.github/workflows/validateUpdatedIssues.yml @@ -38,8 +38,7 @@ jobs: repo-token: ${{ secrets.IDEE_GH_TOKEN}} new-feature: - if: ${{ (github.event.label.name == 'feature' || github.event.label.name == 'type:enhancements' || (needs.check-feature-request.outputs.is_feature_request == 'true')) && !contains(github.event.issue.labels.*.name, 'status:owned by another team') }} - needs: [check-feature-request] + if: ${{ (github.event.label.name == 'feature' || github.event.label.name == 'type:enhancements') && !contains(github.event.issue.labels.*.name, 'status:owned by another team') }} runs-on: ubuntu-latest steps: - uses: actions/checkout@v3.0.0