action.yml 459 B

123456789101112131415161718192021222324
  1. name: PreMiD-StringUpdater
  2. description: Updates strings on MongoDB
  3. author: Timeraa
  4. branding:
  5. icon: globe
  6. color: blue
  7. inputs:
  8. project_id:
  9. description: Crowdin Project Id
  10. required: true
  11. token:
  12. description: Crowdin API Token
  13. required: true
  14. mongo_url:
  15. description: MongoDB URL
  16. required: true
  17. runs:
  18. using: docker
  19. image: Dockerfile
  20. args:
  21. - ${{ inputs.project_id }}
  22. - ${{ inputs.token }}
  23. - ${{ inputs.mongo_url }}