Skip to content

chore(deps): Bump dotnet/sdk from 8.0.301 to 8.0.303 in /BaseBotService #263

chore(deps): Bump dotnet/sdk from 8.0.301 to 8.0.303 in /BaseBotService

chore(deps): Bump dotnet/sdk from 8.0.301 to 8.0.303 in /BaseBotService #263

Workflow file for this run

name: Auto Labeler and Reviewer Assignment
on: [pull_request_target]
jobs:
label-and-review:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run Labeler
id: labeler
uses: actions/labeler@v5
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
configuration-path: .github/labeler.yml
- name: Add Reviewer for Core or Infrastructure Labels
if: contains(steps.labeler.outputs.all-labels, 'core') || contains(steps.labeler.outputs.all-labels, 'infrastructure')
uses: actions/github-script@v7
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
github.rest.pulls.requestReviewers({
owner: context.repo.owner,
repo: context.repo.repo,
pull_number: context.issue.number,
reviewers: [context.repo.owner]
})