Bump tjenkinson/gh-action-auto-merge-dependency-updates from 4d7756c04d9d999c5968697a621b81c47f533d61 to 181d69240efa4d320cf485fea18c8f1b8f6378f3 #1143
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: Triage new pull requests | |
# **What it does**: | |
# **Why we have it**: | |
# **Who does it impact**: | |
on: | |
pull_request_target: | |
types: | |
- reopened | |
- opened | |
jobs: | |
triage_pulls: | |
if: github.repository != 'github/docs-internal' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Label new pull requests with 'triage' | |
uses: rachmari/labeler@832d42ec5523f3c6d46e8168de71cd54363e3e2e | |
with: | |
repo-token: '${{ secrets.GITHUB_TOKEN }}' | |
add-labels: 'triage' | |
- name: Triage to project board | |
uses: rachmari/actions-add-new-issue-to-column@1a459ef92308ba7c9c9dc2fcdd72f232495574a9 | |
with: | |
action-token: ${{ secrets.GITHUB_TOKEN }} | |
project-url: 'https://github.com/github/docs/projects/1' | |
column-name: 'Triage' |