action.yml 546 B

123456789101112131415161718
  1. name: "Hercules Insights"
  2. description: "Runs various Git history analysis with src-d/hercules"
  3. author: "source{d}"
  4. inputs:
  5. args:
  6. description: "hercules command line arguments"
  7. required: false
  8. default: "--burndown --burndown-people"
  9. runs:
  10. using: "docker"
  11. image: "docker://srcd/hercules:latest"
  12. entrypoint: "/bin/bash"
  13. args:
  14. - "-c"
  15. - "mkdir /github/home/hercules && cd /github/home/hercules && hercules ${{ inputs.args }} --pb /github/workspace | labours -m all -o result"
  16. branding:
  17. color: purple
  18. icon: bar-chart-2