Skip to content

fix: update all files #9

fix: update all files

fix: update all files #9

name: "Monitor Changed Files"
on:
workflow_dispatch:
pull_request:
branches:
- main
types:
- opened
- synchronize
- reopened
- ready_for_review
- edited
jobs:
run-monitor-changed-files:
runs-on: ubuntu-latest
steps:
- id: checkout
name: Checkout
uses: actions/checkout@v3
- name: Get all test, doc and src files that have changed
id: changed-files-yaml
uses: tj-actions/changed-files@v40
with:
files_yaml_from_source_file: .github/files-in-observation.yml
- name: Run step if test file(s) change
# if: steps.changed-files-yaml.outputs.seo_any_changed == 'true'
run: |
echo "One or more SEO file(s) has changed."
echo "List all the files that have changed: ${{ steps.changed-files-yaml.outputs.seo_all_changed_files }}"