Skip to content
logo

Homey App — Translate

Actions
Translate an app for Homey
v1
Latest
Verified creator
Star (1)

Tags

 (1)

Verified

GitHub has manually verified the creator of the action as an official partner organization. For more info see About badges in GitHub Marketplace.

Homey App Translate

This GitHub Action will translate the current Homey app using OpenAI.

Inputs

openai_api_key

An OpenAI API Key. You can create an API Key on https://platform.openai.com/api-keys.

Example usage


on:
  workflow_dispatch:

jobs:  
    main:
      name: Translate App
      runs-on: ubuntu-latest
      steps:
        - uses: actions/checkout@v3
        - name: Translate Homey App 
          uses: athombv/github-action-homey-app-translate@master
          with:
            openai_api_key: ${{ secrets.OPENAI_API_KEY }}

        - name: Commit, Push & Create Pull Request
          env:
            GH_TOKEN: ${{ github.token }}
          run: |
            git config --local user.email "[email protected]"
            git config --local user.name "Homey Github Actions Bot"
            
            git checkout -b feature/openai-translations
            
            git add -A
            git commit -m "Automatic translations with OpenAI"
            git push --set-upstream origin feature/openai-translations

            gh pr create --fill

Homey App — Translate is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.

About

Translate an app for Homey
v1
Latest

Verified

GitHub has manually verified the creator of the action as an official partner organization. For more info see About badges in GitHub Marketplace.

Tags

 (1)

Homey App — Translate is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.