Sin descripción

dependabot[bot] 2c4d1163ba Bump @actions/core from 1.2.3 to 1.9.1 hace 2 años
dist 74ccc4143b PreMiD mods hace 4 años
src d75f05a666 join by newlines not spaces hace 4 años
.gitignore 4f717ac50d Initial commit hace 5 años
LICENSE 4f717ac50d Initial commit hace 5 años
README.md 5306e1f7a1 Add optional `pr-number` input (#8) hace 4 años
action.yml fef8371ec3 fix action.yml hace 4 años
package.json 2c4d1163ba Bump @actions/core from 1.2.3 to 1.9.1 hace 2 años
tsconfig.json 4f717ac50d Initial commit hace 5 años
yarn.lock 2c4d1163ba Bump @actions/core from 1.2.3 to 1.9.1 hace 2 años

README.md

Changed Files Action

This GitHub action applies to pull requests and populates 3 output variables with the modified files. They are: "files_created", "files_updated", and "files_deleted".

Workflow Config Example

- name: Changed Files Exporter
  uses: futuratrepadeira/changed-files@v3.1.0
  with:
    repo-token: ${{ github.token }}
    pattern: '^.*\.(md|markdown)$'

Inputs

  • repo-token: GitHub Access Token
  • pattern (optional): A regular expression to filter the outputs by. Defaults to '.*'.
  • pr-number (optional): The pull request number. If not provided, the pull request is inferred from the given context. Useful for actions running outside the pull_request event context.

Outputs

All output values are a single JSON encoded array.

  • files_created: Created files
  • files_updated: Updated files
  • files_deleted: Deleted files