Skip to content

GitHub Action that flags file changes that may affect CodeTour content

License

Notifications You must be signed in to change notification settings

TyMick/codetour-watch

 
 

Repository files navigation

GitHub Marketplace

CodeTour Watch

A GitHub action that flags file changes in a PR that may affect CodeTour content.

The action comments on the PR to report changes that may impact CodeTour:

Screenshot of comment

The action will not comment the PR if changes do not impact CodeTour.

Usage

name: CodeTour watch

on:
    pull_request:
        types: [opened, edited, synchronize, reopened]

jobs:
    codetour-watch:
        runs-on: ubuntu-latest
        steps:
            - name: 'Checkout source code'
              uses: actions/checkout@v2

            - name: 'Watch CodeTour changes'
              uses: pozil/codetour-watch@v1.4.0
              with:
                  repo-token: ${{ secrets.GITHUB_TOKEN }}

Inputs

Name Required Description Default
repo-token false The GITHUB_TOKEN, required to comment. secrets.GITHUB_TOKEN
silent false Optional flag that turns off the comment on the PR. false
tour-path false Optional flag that specifies a custom .tours folder location. .tours

Outputs

Name Description
impactedFiles The list of files covered by tours that were changed.
impactedTours The list of tours that were impacted by the PR.
missingTourUpdates The list of tours that were impacted by the changes but that are not part of the PR.

About

GitHub Action that flags file changes that may affect CodeTour content

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 99.2%
  • Shell 0.8%