Files
react-native-web/.github/workflows/labels.yml
Bartosz Kaszubowski 5bb02faffc Fix actions used in workflows
Close #2461
2023-01-27 10:23:07 -08:00

17 lines
365 B
YAML

name: labels
# This workflow is triggered when a label is added to an issue.
on:
issues:
types: labeled
jobs:
label-actions:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: hramos/label-actions@v1
with:
configuration-path: .github/labels-config.yml
repo-token: ${{ secrets.GITHUB_TOKEN }}