Skip to content

Commit

Permalink
Added workflow for translations
Browse files Browse the repository at this point in the history
  • Loading branch information
MerelHudepohl committed Aug 1, 2024
1 parent 09d6d73 commit fae31bc
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 0 deletions.
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 }}

0 comments on commit fae31bc

Please sign in to comment.