Bump tjenkinson/gh-action-auto-merge-dependency-updates from 4d7756c04d9d999c5968697a621b81c47f533d61 to 55a9ac3bf83bed7c1fadb174e5340bb1ad1128d7 #1994
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: | |
pull_request_target: | |
types: | |
- labeled | |
jobs: | |
unmark_for_review: | |
if: github.repository == 'github/docs' && github.event.label.name == 'ready to merge' | |
runs-on: ubuntu-latest | |
steps: | |
- name: move PR | |
uses: alex-page/github-project-automation-plus@fdb7991b72040d611e1123d2b75ff10eda9372c9 | |
with: | |
project: Docs team reviews | |
column: Triage | |
repo-token: ${{ secrets.DOCUBOT_READORG_REPO_WORKFLOW_SCOPES }} | |
- name: remove label | |
uses: andymckay/labeler@22d5392de2b725cea4b284df5824125054049d84 | |
with: | |
remove-labels: 'waiting for review' | |
repo-token: ${{ secrets.GITHUB_TOKEN }} |