Summary: Adds a GitHub action that applies a label to issues where the original author has responded to. Pull Request resolved: https://github.com/facebook/flipper/pull/1022 Test Plan: Try it out? Reviewed By: jknoxville Differential Revision: D21089462 Pulled By: passy fbshipit-source-id: 6a728d1acf710d36835bfc5966648936ceb5586e
18 lines
399 B
YAML
18 lines
399 B
YAML
name: Label issues
|
|
|
|
# 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@v2
|
|
- name: Apply Needs Attention Label
|
|
uses: hramos/needs-attention@v1
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|