diff --git a/.github/workflows/blazor-issue-processing.yml b/.github/workflows/blazor-issue-processing.yml index 28ddc0351ad7..db6f0741fe40 100644 --- a/.github/workflows/blazor-issue-processing.yml +++ b/.github/workflows/blazor-issue-processing.yml @@ -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, diff --git a/.github/workflows/blazor-pr-processing.yml b/.github/workflows/blazor-pr-processing.yml new file mode 100644 index 000000000000..0e6d51f49827 --- /dev/null +++ b/.github/workflows/blazor-pr-processing.yml @@ -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.` + })