Skip to content

Commit e2d7d93

Browse files
authored
Create blazor-pr-processing.yml (#34233)
1 parent 548d775 commit e2d7d93

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: PR processing
2+
on:
3+
pull_request:
4+
types:
5+
[review_requested]
6+
jobs:
7+
process-blazor-pr:
8+
if: ${{ github.event.requested_reviewer.login == 'guardrex' }}
9+
runs-on: ubuntu-latest
10+
permissions:
11+
pull-requests: write
12+
steps:
13+
- uses: actions/github-script@v6
14+
with:
15+
script: |
16+
await github.rest.issues.createComment({
17+
issue_number: context.issue.number,
18+
owner: context.repo.owner,
19+
repo: context.repo.repo,
20+
body: `### 🍂🎃🏮 *OOF: Back on Monday, 12/2* 🥧☕🍂
21+
Stand by! We're out of the office for the Thanksgiving holiday 🦃.
22+
23+
A green dinosaur 🦖 will be back on Monday (12/2) to assist.`
24+
})

0 commit comments

Comments
 (0)