Skip to content

fix(links): fix Lychee configuration and fix the links which are not linking #16

fix(links): fix Lychee configuration and fix the links which are not linking

fix(links): fix Lychee configuration and fix the links which are not linking #16

Workflow file for this run

name: Bot - On PR Open
# Runs on opened, reopened, and ready_for_review. Single job: run all 4 checks
# (DCO, GPG, merge conflict, issue link), post unified comment, auto-assign,
# and apply status label via bot-on-pr-open.js.
on:
# Uses pull_request_target so fork PRs get write token without repo setting; we
# checkout default branch only so we never run PR branch code.
pull_request_target:
types:
- opened
- reopened
- ready_for_review
permissions:
pull-requests: write
contents: read
jobs:
on-pr-open:
runs-on: hl-web-lin-md
if: github.event.pull_request.draft == false
concurrency:
group: pr-bot-${{ github.event.pull_request.number }}
cancel-in-progress: false
steps:
- name: Harden Runner
uses: step-security/harden-runner@b09bb98e06d4d774595224525879c09bc6e98c40 # v2.20.1
with:
egress-policy: audit
- name: Checkout Repository
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Run Bot
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
with:
script: |
// Script is ESM, so require() returns the namespace; unwrap the default export.
const { default: script } = require('./.github/scripts/bot-on-pr-open.js');
await script({ github, context });