Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added workflows for translations #55

Merged
merged 1 commit into from
Jul 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/homey-app-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: Publish Homey App

on:
workflow_dispatch:

jobs:
main:
uses: athombv/athom-github-workflow/.github/workflows/homey-app-publish.yml@master
secrets: inherit
8 changes: 8 additions & 0 deletions .github/workflows/homey-app-translate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name: Translate Homey App
on:
workflow_dispatch:

jobs:
main:
uses: athombv/athom-github-workflow/.github/workflows/homey-app-translate.yml@master
secrets: inherit
8 changes: 8 additions & 0 deletions .github/workflows/homey-app-validate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name: Validate Homey App
on:
workflow_dispatch:

jobs:
main:
uses: athombv/athom-github-workflow/.github/workflows/homey-app-validate.yml@master
secrets: inherit
26 changes: 26 additions & 0 deletions .github/workflows/homey-app-version.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Update Homey App Version

on:
workflow_dispatch:
inputs:
version:
type: choice
description: Version
required: true
default: patch
options:
- major
- minor
- patch
changelog:
type: string
description: Changelog
required: true

jobs:
main:
uses: athombv/athom-github-workflow/.github/workflows/homey-app-version.yml@master
secrets: inherit
with:
version: ${{ github.event.inputs.version }}
changelog: ${{ github.event.inputs.changelog }}