From 066847cbf342a449a80f9364f218a1c4634a93f9 Mon Sep 17 00:00:00 2001 From: chiedo Date: Mon, 24 May 2021 14:57:02 -0400 Subject: [PATCH] No longer needed We now track crowdin migration todos in FR batches --- .../workflows/send-crowdin-prs-to-boards.yml | 31 ------------------- 1 file changed, 31 deletions(-) delete mode 100644 .github/workflows/send-crowdin-prs-to-boards.yml diff --git a/.github/workflows/send-crowdin-prs-to-boards.yml b/.github/workflows/send-crowdin-prs-to-boards.yml deleted file mode 100644 index 7d016122d1..0000000000 --- a/.github/workflows/send-crowdin-prs-to-boards.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: Send Crowdin PRs to boards - -# **What it does**: Sends PRs opened on the crowdin branch to the ready for work column in this board: https://github.com/orgs/github/projects/1269#column-13447153 -# **Why we have it**: To make sure the first responder sees crowdin translations that need to be merged as they review the Task board. -# **Who does it impact**: Docs localization and Docs Engineering - -on: - pull_request: - types: - - opened - -jobs: - triage: - if: github.repository == 'github/docs-internal' && github.event.pull_request.head.ref == 'translations' - runs-on: ubuntu-latest - steps: - - uses: actions/github-script@626af12fe9a53dc2972b48385e7fe7dec79145c9 - with: - github-token: ${{ secrets.DOCUBOT_READORG_REPO_WORKFLOW_SCOPES }} - script: | - var squadBoardColumnId = 13447153; // Add to the team task board - - try { - await github.projects.createCard({ - column_id: squadBoardColumnId, - content_id: context.payload.pull_request.id, - content_type: "PullRequest" - }); - } catch (error) { - console.log(error); - }