No description
  • Shell 73.4%
  • Dockerfile 26.6%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2020-07-31 15:26:35 -04:00
.gitignore Create .gitignore 2020-06-15 05:41:26 -04:00
action.yml Update action.yml 2020-06-15 07:13:22 -04:00
Dockerfile Update Dockerfile 2020-06-15 06:22:26 -04:00
entrypoint.sh Updated permission. 2020-06-15 06:10:59 -04:00
LICENSE Create LICENSE 2020-06-15 05:41:53 -04:00
README.md Update README.md 2020-07-31 15:26:35 -04:00
renovate.json Add renovate.json 2020-06-15 10:22:38 +00:00

This repo is no longer maintained moved to https://github.com/tj-actions/verify-changed-files

find-changed-files

A github action to return a list of changed files using grep

...:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      # .....................
      # Make changes to files
      # .....................
      - name: Run Find changed files.
        id: changed_files
        uses: jackton1/find-changed-files@v1.1
        with:
          files: "test.png, new.txt, test_directory"
      - name: Perform action when files change.
        if: steps.changed_files.outputs.files_changed == 'true'
        run: |
          echo "Do something when files have changed."

Inputs

Input type required default description
token string false ${{ github.token }} github action or PAT token
files string false Comma separated list of file/directory names to check for changes during workflow execution