homebridge-securitysystem 8.1.2 → 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.
@@ -32,24 +32,24 @@ jobs:
32
32
  - name: Setup node
33
33
  uses: actions/setup-node@v4.0.1
34
34
 
35
- - name: Create tag name
36
- uses: MiguelRipoll23/create-tag-name@v2.1.2
37
- id: create-tag-name
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.TAG_NAME }}
43
+ npm version --no-git-tag-version ${{ env.NEXT_VERSION }}
44
44
  env:
45
- TAG_NAME: ${{ steps.create-tag-name.outputs.tag-name }}
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.create-tag-name.outputs.tag-name }}
51
- commit-message: ${{ steps.create-tag-name.outputs.tag-name }}
52
- title: Bump version to ${{ steps.create-tag-name.outputs.tag-name }}
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.2",
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": {