We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 548d775 commit e2d7d93Copy full SHA for e2d7d93
.github/workflows/blazor-pr-processing.yml
@@ -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