This allows users to follow certain labels and automatically get @-mentioned when they are applied to an issue or a pull request. See https://github.com/bytecodealliance/subscribe-to-label-action for details. Fixes #1234
14 lines
277 B
YAML
14 lines
277 B
YAML
name: "Subscribe to Label"
|
|
on:
|
|
pull_request:
|
|
types: ["labeled"]
|
|
issues:
|
|
types: ["labeled"]
|
|
jobs:
|
|
triage:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: bytecodealliance/subscribe-to-label-action@v1
|
|
with:
|
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|