Skip to main content

dependentFilePaths: [‘.’]

documentaly (Beta)

This GitHub Action reminds pull request reviewers to check the related documentation with the PR . It helps ensure that all documentation is up-to-date and consistent with the code changes. Simply add the action to your workflow and configure the trigger as needed.

Usage

name: documentaly
on: pull_request
env:
  BASE_BRANCH: main
jobs:
  check_and_comment:
    runs-on: ubuntu-latest
    steps:
      - name: documentaly
        uses: mssknd/documentaly@main
        with:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
          BASE_BRANCH: ${{ env.BASE_BRANCH }}

Inputs

Name Description Default Required
GITHUB_TOKEN your github token n/a yes
BASE_BRANCH base branch name main no

Outputs

TODO

setup document (markdown)

Fill in the dependent file path at the beginning of the markdown file.

---
dependentFilePaths: ['.']
---

# Title of Markdown

description.