Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/blazor-issue-processing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,10 @@ jobs:
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: `### ๐Ÿ‚๐ŸŽƒ๐Ÿฎ *Autumn Skies and Pumpkin Pies!* ๐Ÿฅงโ˜•๐Ÿ‚
Stand by! A green dinosaur ๐Ÿฆ– will arrive shortly to assist.`
body: `### ๐Ÿ‚๐ŸŽƒ๐Ÿฎ *OOF: Back on Monday, 12/2* ๐Ÿฅงโ˜•๐Ÿ‚
Stand by! We're out of the office for the Thanksgiving holiday ๐Ÿฆƒ.

A green dinosaur ๐Ÿฆ– will be back on Monday (12/2) to assist.`
})
await github.rest.issues.addLabels({
issue_number: context.issue.number,
Expand Down
24 changes: 24 additions & 0 deletions .github/workflows/blazor-pr-processing.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: PR processing
on:
pull_request:
types:
[review_requested]
jobs:
process-blazor-pr:
if: ${{ github.event.requested_reviewer.login == 'guardrex' }}
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- uses: actions/github-script@v6
with:
script: |
await github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: `### ๐Ÿ‚๐ŸŽƒ๐Ÿฎ *OOF: Back on Monday, 12/2* ๐Ÿฅงโ˜•๐Ÿ‚
Stand by! We're out of the office for the Thanksgiving holiday ๐Ÿฆƒ.

A green dinosaur ๐Ÿฆ– will be back on Monday (12/2) to assist.`
})