mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
d0d2115bee
Summary: We use the `respond-to-issue-based-on-label` GitHub Action to aid in issue triage. This is a trivial change to ensure we use the new, renamed version of the action. ## Changelog [Internal] - Use renamed GitHub action Pull Request resolved: https://github.com/facebook/react-native/pull/30832 Test Plan: CI Reviewed By: fkgozali Differential Revision: D26702542 Pulled By: hramos fbshipit-source-id: d9d3685f17bfc504fd7e31dee1c6c330e88ef1d1
17 lines
437 B
YAML
17 lines
437 B
YAML
name: On Issue Labeled
|
|
# This workflow is triggered when a label is added to an issue.
|
|
on:
|
|
issues:
|
|
types: labeled
|
|
|
|
jobs:
|
|
respondToIssueBasedOnLabel:
|
|
name: Respond to Issue Based on Label
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Respond to Issue Based on Label
|
|
uses: hramos/respond-to-issue-based-on-label@v2
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|