From 014271f0a83a793d1dc1bd016bfdebe86df8f72d Mon Sep 17 00:00:00 2001 From: Will Gillis <40799239+t-will-gillis@users.noreply.github.com> Date: Thu, 15 Jun 2023 22:30:43 -0700 Subject: [PATCH] Update set-pr-labels.yaml --- .github/workflows/set-pr-labels.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/set-pr-labels.yaml b/.github/workflows/set-pr-labels.yaml index ca338598b5..0ba8249cd9 100644 --- a/.github/workflows/set-pr-labels.yaml +++ b/.github/workflows/set-pr-labels.yaml @@ -6,7 +6,6 @@ on: branches: - 'gh-pages' - 'feature-homepage-launch' - - 'check-version-updates-4831' jobs: generate-labels-artifact: @@ -17,17 +16,17 @@ jobs: PR_NUMBER: ${{ github.event.number }} SCRIPT_PATH: './github-actions/trigger-pr/set-pr-labels.js' steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v2 - id: parse-pr-body name: 'Parse the pull request body for all linked issues' - uses: actions/github-script@v6 + uses: actions/github-script@v5 with: script: | const { listIssuesFromPRBody } = require('${{ env.SCRIPT_PATH }}'); return listIssuesFromPRBody({ context, core }); - id: compile-labels name: 'Compile labels from linked issues' - uses: actions/github-script@v6 + uses: actions/github-script@v5 with: script: | const { listLabelsFromIssues } = require('${{ env.SCRIPT_PATH }}');