Extend documentation for customers that have not been assisted #2225
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: PR content labels | |
on: | |
pull_request: | |
branches: | |
- latest | |
- hilla | |
- next | |
types: [opened] | |
jobs: | |
auto-label: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: banyan/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# Experimental: Run required labels after labeling | |
- uses: peter-evans/repository-dispatch@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
repository: ${{ github.repository }} | |
event-type: trigger-required-labels | |
client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}"}' |