Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

docs: add section about how to disable path based apps to security best practices#4404

docs: add section about how to disable path based apps to security best practices

docs: add section about how to disable path based apps to security best practices #4404

Workflow file for this run

name:weekly-docs
# runs every monday at 9 am
on:
schedule:
-cron:"0 9 * * 1"
workflow_dispatch:# allows to run manually for testing
pull_request:
branches:
-main
paths:
-"docs/**"
permissions:
contents:read
jobs:
check-docs:
# later versions of Ubuntu have disabled unprivileged user namespaces, which are required by the action
runs-on:ubuntu-22.04
permissions:
pull-requests:write# required to post PR review comments by the action
steps:
-name:Harden Runner
uses:step-security/harden-runner@6c439dc8bdf85cadbbce9ed30d1c7b959517bc49# v2.12.2
with:
egress-policy:audit
-name:Checkout
uses:actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683# v4.2.2
-name:Check Markdown links
uses:umbrelladocs/action-linkspector@e2ccef58c4b9eb89cd71ee23a8629744bba75aa6# v1.3.5
id:markdown-link-check
# checks all markdown files from /docs including all subfolders
with:
reporter:github-pr-review
config_file:".github/.linkspector.yml"
fail_on_error:"true"
filter_mode:"file"
-name:Send Slack notification
if:failure() && github.event_name == 'schedule'
run:|
curl -X POST -H 'Content-type: application/json' -d '{"msg":"Broken links found in the documentation. Please check the logs at ${{ env.LOGS_URL }}"}' ${{ secrets.DOCS_LINK_SLACK_WEBHOOK }}
echo "Sent Slack notification"
env:
LOGS_URL:https://github.com/coder/coder/actions/runs/${{ github.run_id }}

[8]ページ先頭

©2009-2025 Movatter.jp