action.yml 653 B

12345678910111213141516171819202122232425
  1. name: 'Changed Files Exporter'
  2. description: 'Exports the files created, modified or deleted by a PR'
  3. author: 'Duarte Nunes <duarte.m.nunes@gmail.com'
  4. inputs:
  5. repo-token:
  6. description: 'The GITHUB_TOKEN secret'
  7. required: true
  8. pattern:
  9. description: 'A regular expression to filter the outputs by.'
  10. required: false
  11. default: '.*'
  12. outputs:
  13. files_created:
  14. description: 'The names of the newly created files'
  15. files_updated:
  16. description: 'The names of the updated files'
  17. files_deleted:
  18. description: 'The names of the deleted files'
  19. runs:
  20. using: 'node12'
  21. main: 'lib/main.js'
  22. branding:
  23. icon: 'wind'
  24. color: 'green'