action.yml 538 B

123456789101112131415161718192021
  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. outputs:
  9. files_created:
  10. description: 'The names of the newly created files'
  11. files_updated:
  12. description: 'The names of the updated files'
  13. files_deleted:
  14. description: 'The names of the deleted files'
  15. runs:
  16. using: 'node12'
  17. main: 'lib/main.js'
  18. branding:
  19. icon: 'wind'
  20. color: 'green'