Skip to content

Document ROBOT QC, source-DB scope, release-diff, and BioPortal mechanics in CLAUDE.md #111

Document ROBOT QC, source-DB scope, release-diff, and BioPortal mechanics in CLAUDE.md

Document ROBOT QC, source-DB scope, release-diff, and BioPortal mechanics in CLAUDE.md #111

Workflow file for this run

name: actionlint
# Lints the GitHub Actions workflow files themselves. actionlint also runs
# shellcheck on every `run:` block, which catches shell bugs in workflows (for
# example, the `set -o pipefail` that fails under the container's default dash
# shell, and unquoted variables). Pinned to the official image by version.
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
permissions:
contents: read
jobs:
actionlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- name: Run actionlint
run: docker run --rm -v "${{ github.workspace }}":/repo:ro --workdir /repo rhysd/actionlint:1.7.12