-
-
Notifications
You must be signed in to change notification settings - Fork 40
32 lines (28 loc) · 1.15 KB
/
eufy_create_mr_and_build_image.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: eufy_create_mr_and_build_image
on:
workflow_dispatch:
repository_dispatch:
types: [create_mr_and_build_image]
# schedule:
# - cron: "0 6,18 * * *"
jobs:
create_mr_and_build_image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cd eufy-ha-mqtt-bridge && ./version-updater.sh
- name: Create Pull Request
uses: peter-evans/create-pull-request@v7
with:
title: Update eufy-mqtt-ha-bridge to version ${{ env.MQTT_BRIDGE_VERSION }}
commit-message: Update eufy-mqtt-ha-bridge to version ${{ env.MQTT_BRIDGE_VERSION }}
committer: Max Winterstein <[email protected]>
author: Max Winterstein <[email protected]>
assignees: MaxWinterstein
body: |
Update report
- Update related files of eufy-mqtt-ha-bridge to version ${{ env.MQTT_BRIDGE_VERSION }} [Changelog][1]
- Build docker image, check [DockerHub][2]
[1]: https://github.com/matijse/eufy-ha-mqtt-bridge/releases
[2]: https://hub.docker.com/r/maxwinterstein/
if: ${{ env.CONTINUE }}