Skip to content

Workflow file for this run

name: 'Pull Request Labeler'
on:
- pull_request_target
jobs:
triage:
permissions:
contents: read
pull-requests: write
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Label PRs
uses: actions/labeler@v4
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Auto-assign to core PRs
if: contains(github.event.pull_request.labels.*.name, 'core')
uses: kentaro-m/auto-assign-action@v1
with:
assignees: [taskylizard]

Check failure on line 22 in .github/workflows/labeler.yml

View workflow run for this annotation

GitHub Actions / Pull Request Labeler

Invalid workflow file

The workflow is not valid. .github/workflows/labeler.yml (Line: 22, Col: 22): A sequence was not expected
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}