21 lines
477 B
YAML
21 lines
477 B
YAML
name: 'Status checker'
|
|
|
|
on:
|
|
pull_request_target:
|
|
types: [opened, synchronize, reopened]
|
|
|
|
jobs:
|
|
status_checker_job:
|
|
name: Look for build warnings
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
statuses: write
|
|
issues: write
|
|
pull-requests: write
|
|
steps:
|
|
- uses: dotnet/docs-actions/actions/status-checker@main
|
|
with:
|
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
docs_path: "aspnetcore"
|
|
url_base_path: "aspnet/core"
|