homebridge-securitysystem 8.1.2-beta.1 → 8.1.3-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -5,7 +5,7 @@ on:
|
|
|
5
5
|
inputs:
|
|
6
6
|
channel:
|
|
7
7
|
type: choice
|
|
8
|
-
default:
|
|
8
|
+
default: beta
|
|
9
9
|
description: Pick channel
|
|
10
10
|
options:
|
|
11
11
|
- alpha
|
|
@@ -32,24 +32,24 @@ jobs:
|
|
|
32
32
|
- name: Setup node
|
|
33
33
|
uses: actions/setup-node@v4.0.1
|
|
34
34
|
|
|
35
|
-
- name:
|
|
36
|
-
uses: MiguelRipoll23/
|
|
37
|
-
id:
|
|
35
|
+
- name: Get next version
|
|
36
|
+
uses: MiguelRipoll23/get-next-version@v3.0.0
|
|
37
|
+
id: get-next-version
|
|
38
38
|
with:
|
|
39
39
|
channel: ${{ inputs.channel }}
|
|
40
40
|
|
|
41
41
|
- name: Update version
|
|
42
42
|
run: |
|
|
43
|
-
npm version --no-git-tag-version ${{ env.
|
|
43
|
+
npm version --no-git-tag-version ${{ env.NEXT_VERSION }}
|
|
44
44
|
env:
|
|
45
|
-
|
|
45
|
+
NEXT_VERSION: ${{ steps.get-next-version.outputs.next-version }}
|
|
46
46
|
|
|
47
47
|
- name: Create pull request
|
|
48
48
|
uses: peter-evans/create-pull-request@v6
|
|
49
49
|
with:
|
|
50
|
-
branch: version/${{ steps.
|
|
51
|
-
commit-message: ${{ steps.
|
|
52
|
-
title: Bump version to ${{ steps.
|
|
50
|
+
branch: version/${{ steps.get-next-version.outputs.next-version }}
|
|
51
|
+
commit-message: ${{ steps.get-next-version.outputs.next-version }}
|
|
52
|
+
title: Bump version to ${{ steps.get-next-version.outputs.next-version }}
|
|
53
53
|
body: Automated pull request triggered by a new release.
|
|
54
54
|
labels: new-release,ignore-for-release
|
|
55
55
|
reviewers: MiguelRipoll23
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "homebridge-securitysystem",
|
|
3
3
|
"displayName": "Homebridge Security System",
|
|
4
|
-
"version": "8.1.
|
|
4
|
+
"version": "8.1.3-beta.1",
|
|
5
5
|
"description": "Homebridge plugin that creates a security system accessory that can be triggered by HomeKit sensors.",
|
|
6
6
|
"main": "src/index.js",
|
|
7
7
|
"scripts": {
|