Skip to content

Bump @grpc/grpc-js from 1.14.3 to 1.14.4 in the npm_and_yarn group across 1 directory #23205

Bump @grpc/grpc-js from 1.14.3 to 1.14.4 in the npm_and_yarn group across 1 directory

Bump @grpc/grpc-js from 1.14.3 to 1.14.4 in the npm_and_yarn group across 1 directory #23205

name: Move and unlabel ready to merge PRs
# **What it does**: When a PR in the open source repo is labeled "ready to merge," the "waiting for review" label is removed and the PR is moved to the "Triage" column.
# **Why we have it**: To help with managing our project boards.
# **Who does it impact**: Open source contributors, open-source maintainers.
on:
# Needed in lieu of `pull_request` so that the a PR from a fork can trigger the project board and label automation.
pull_request_target:
types:
- labeled
permissions:
contents: read
pull-requests: write
jobs:
unmark_for_review:
if: >-
${{
github.repository == 'github/docs' &&
github.event.label.name == 'ready to merge'
}}
runs-on: ubuntu-latest
steps:
- name: Add PR to the open source board
uses: actions/add-to-project@5afcf98fcd03f1c2f92c3c83f58ae24323cc57fd # v2.0.0
with:
project-url: https://github.com/orgs/github/projects/2936
github-token: ${{ secrets.DOCS_BOT_PAT_BASE }}
- name: Move PR to Triage on the open source board
uses: github/update-project-action@af4f6083118f5080c89828b421ef598d1906fb60 # v4
with:
github_token: ${{ secrets.DOCS_BOT_PAT_BASE }}
organization: github
project_number: 2936
content_id: ${{ github.event.pull_request.node_id }}
field: Status
value: Triage
- name: Check out repo
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- uses: ./.github/actions/node-npm-setup
- name: remove label
uses: ./.github/actions/labeler
with:
ignoreifAssigned: 'false'
removeLabels: 'waiting for review'