🤖 Auto label #6947
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: 🤖 Auto label | |
on: pull_request_review | |
jobs: | |
label-when-approved: | |
name: Label when approved | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Setup global variables | |
uses: ./.github/actions/variables | |
- name: Label when approved | |
if: env.IS_OWNER_MODE == 'true' | |
uses: pullreminders/label-when-approved-action@master | |
env: | |
APPROVALS: '2' | |
ADD_LABEL: 'ready to merge' | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |