translationUpdater.yml 415 B

1234567891011121314151617181920
  1. name: Translation Updater
  2. on:
  3. push:
  4. branches:
  5. - main
  6. concurrency:
  7. group: ${{ github.ref }}
  8. cancel-in-progress: true
  9. jobs:
  10. update:
  11. runs-on: ubuntu-latest
  12. steps:
  13. - name: Setup environment
  14. uses: actions/checkout@v3
  15. - uses: ./action
  16. with:
  17. project_id: ${{secrets.PROJECT_ID}}
  18. token: ${{secrets.TOKEN}}
  19. mongo_url: ${{secrets.MONGO_URL}}