2021-04-09 08:04:22 +08:00
|
|
|
name: 'Status checker'
|
|
|
|
|
|
|
|
on:
|
2021-04-22 01:02:29 +08:00
|
|
|
pull_request_target:
|
2021-04-09 08:04:22 +08:00
|
|
|
types: [opened, synchronize, reopened]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
status_checker_job:
|
|
|
|
name: Look for build warnings
|
|
|
|
runs-on: ubuntu-latest
|
2023-03-14 06:54:47 +08:00
|
|
|
permissions:
|
|
|
|
statuses: write
|
|
|
|
issues: write
|
|
|
|
pull-requests: write
|
2021-04-09 08:04:22 +08:00
|
|
|
steps:
|
2023-04-08 06:21:40 +08:00
|
|
|
- uses: actions/checkout@v3
|
2021-06-18 23:37:30 +08:00
|
|
|
- uses: dotnet/docs-actions/actions/status-checker@main
|
2021-04-09 08:04:22 +08:00
|
|
|
with:
|
2023-03-15 05:01:44 +08:00
|
|
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
docs_path: "aspnetcore"
|
|
|
|
url_base_path: "aspnet/core"
|