Skip to content

Commit

Permalink
Updated workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
MerelHudepohl committed Aug 1, 2024
1 parent fae31bc commit 2531cbd
Show file tree
Hide file tree
Showing 4 changed files with 76 additions and 17 deletions.
20 changes: 16 additions & 4 deletions .github/workflows/homey-app-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,19 @@ name: Publish Homey App
on:
workflow_dispatch:

jobs:
main:
uses: athombv/athom-github-workflow/.github/workflows/homey-app-publish.yml@master
secrets: inherit
jobs:
publish-app:
name: Publish App
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Publish
uses: athombv/github-action-homey-app-publish@master
id: publish
with:
personal_access_token: ${{ secrets.HOMEY_PAT }}

- name: URL
run: |
echo "Manage your app at ${{ steps.publish.outputs.url }}." >> $GITHUB_STEP_SUMMARY
31 changes: 27 additions & 4 deletions .github/workflows/homey-app-translate.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,31 @@
name: Translate Homey App

on:
workflow_dispatch:

jobs:
main:
uses: athombv/athom-github-workflow/.github/workflows/homey-app-translate.yml@master
secrets: inherit
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
13 changes: 9 additions & 4 deletions .github/workflows/homey-app-validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@ name: Validate Homey App
on:
workflow_dispatch:

jobs:
main:
uses: athombv/athom-github-workflow/.github/workflows/homey-app-validate.yml@master
secrets: inherit
jobs:
main:
name: Validate Homey App
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: athombv/github-action-homey-app-validate@master
with:
level: verified
29 changes: 24 additions & 5 deletions .github/workflows/homey-app-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,29 @@ on:
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 }}
name: Update App Version
runs-on: ubuntu-latest
steps:

- uses: actions/checkout@v3

- name: Update App Version
uses: athombv/github-action-homey-app-version@master
id: update_app_version
with:
version: ${{ github.event.inputs.version }}
changelog: ${{ github.event.inputs.changelog }}

- name: Commit & Push
run: |
git config --local user.email "[email protected]"
git config --local user.name "Homey Github Actions Bot"
git add -A
git commit -m "Update Homey App Version to v${{ steps.update_app_version.outputs.version }}"
git tag "v${{ steps.update_app_version.outputs.version }}"
git push origin HEAD --tags

0 comments on commit 2531cbd

Please sign in to comment.