mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
09b06485e9
Summary: This PR updates the GitHub actions uses in the repository workflows. ## Changelog N/A Pull Request resolved: https://github.com/facebook/react-native/pull/33595 Test Plan: Run the workflows. Reviewed By: rickhanlonii Differential Revision: D35495697 Pulled By: cortinico fbshipit-source-id: a41a83dc61f199f9acbc0ce28d6a23fafc94a99c
22 lines
632 B
YAML
22 lines
632 B
YAML
name: Issue Needs Attention
|
|
# This workflow is triggered on issue comments.
|
|
on:
|
|
issue_comment:
|
|
types: created
|
|
|
|
jobs:
|
|
applyNeedsAttentionLabel:
|
|
name: Apply Needs Attention Label
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Apply Needs Attention Label
|
|
uses: hramos/needs-attention@v1
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
response-required-label: "Needs: Author Feedback"
|
|
needs-attention-label: "Needs: Attention"
|
|
id: needs-attention
|
|
- name: Result
|
|
run: echo '${{ steps.needs-attention.outputs.result }}'
|