Bump actions/github-script from 2b34a689ec86a68d8ab9478298f91d5401337b7d to e69ef5462fd455e02edcaf4dd7708eda96b9eda0 #186
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Comment on adding "needs SME" label | |
# **What it does**: Comment on issues and pull requests when a "needs SME" label is added. SME = subject matter expert. | |
# **Why we have it**: We want to manage our queue of issues and pull requests that need sme review. | |
# **Who does it impact**: Everyone that works on docs or docs-internal. | |
on: | |
issues: | |
types: [labeled] | |
pull_request_target: | |
types: [labeled] | |
permissions: | |
issues: write | |
pull-requests: write | |
jobs: | |
add-issue-comment: | |
if: ${{ github.repository == 'github/docs' && (github.event.label.name == 'needs SME' && github.event_name == 'issues') }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: peter-evans/create-or-update-comment@c9fcb64660bc90ec1cc535646af190c992007c32 | |
with: | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
Thanks for opening an issue! We've triaged this issue for technical review by a subject matter expert :eyes: | |
add-pr-comment: | |
if: ${{ github.repository == 'github/docs' && (github.event.label.name == 'needs SME' && github.event_name == 'pull_request_target') }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: peter-evans/create-or-update-comment@c9fcb64660bc90ec1cc535646af190c992007c32 | |
with: | |
issue-number: ${{ github.event.pull_request.number }} | |
body: | | |
Thanks for opening a pull request! We've triaged this issue for technical review by a subject matter expert :eyes: |