back

GitHub Action

CodeTour Watch

v1.5.0 Latest version
Installation

Copy and paste the following snippet into your .yml file.

- name: CodeTour Watch
  uses: mivano-actions/codetour-watch@v1.5.0

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: $

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.