🐙 source-rocketlane: run up-to-date pipeline [2025-09-23] #1198
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow runs reviewdog on pull requests. | |
# Currently reviewdog is only used to run MarkDownLint on docs | |
# Info: https://docs.airbyte.com/platform/next/contributing-to-airbyte/writing-docs#lint-with-markdownlint. | |
# However, this can be expanded later to include all changes in Airbyte | |
name: Reviewdog | |
# Since we're currently only running MarkDownLint, scope this workflow to docs changes only. | |
on: | |
pull_request: | |
paths: | |
- "docs/**/*.md" | |
jobs: | |
markdownlint: | |
name: Docs / MarkDownLint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: markdownlint | |
uses: reviewdog/action-markdownlint@3667398db9118d7e78f7a63d10e26ce454ba5f58 # v0.26.2 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
reporter: github-pr-review # Post as annotations on the Changed Files page | |
level: warning # Don't show info, just warnings and errors | |
filter_mode: added # Only check newly added content |