homebridge-securitysystem 7.5.1 → 7.5.2
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.
|
@@ -1,7 +1,9 @@
|
|
|
1
|
-
name:
|
|
1
|
+
name: Build package
|
|
2
2
|
|
|
3
3
|
on:
|
|
4
4
|
push:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
5
7
|
paths-ignore:
|
|
6
8
|
- "**.md"
|
|
7
9
|
pull_request:
|
|
@@ -10,8 +12,8 @@ on:
|
|
|
10
12
|
- "**.md"
|
|
11
13
|
|
|
12
14
|
jobs:
|
|
13
|
-
|
|
14
|
-
name:
|
|
15
|
+
build-package:
|
|
16
|
+
name: Build package
|
|
15
17
|
runs-on: ubuntu-latest
|
|
16
18
|
|
|
17
19
|
steps:
|
|
@@ -25,5 +27,5 @@ jobs:
|
|
|
25
27
|
cache: "npm"
|
|
26
28
|
registry-url: https://registry.npmjs.org/
|
|
27
29
|
|
|
28
|
-
- name:
|
|
30
|
+
- name: Build package
|
|
29
31
|
run: npm ci
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
#
|
|
5
5
|
# Source repository: https://github.com/actions/dependency-review-action
|
|
6
6
|
# Public documentation: https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review#dependency-review-enforcement
|
|
7
|
-
name:
|
|
7
|
+
name: Review dependencies
|
|
8
8
|
on:
|
|
9
9
|
pull_request:
|
|
10
10
|
types: [opened, reopened, synchronize, ready_for_review]
|
|
@@ -15,10 +15,12 @@ permissions:
|
|
|
15
15
|
contents: read
|
|
16
16
|
|
|
17
17
|
jobs:
|
|
18
|
-
|
|
18
|
+
review-dependencies:
|
|
19
|
+
name: Review Dependencies
|
|
19
20
|
runs-on: ubuntu-latest
|
|
20
21
|
steps:
|
|
21
|
-
- name:
|
|
22
|
+
- name: Checkout Repository
|
|
22
23
|
uses: actions/checkout@v3
|
|
23
|
-
|
|
24
|
+
|
|
25
|
+
- name: Review Dependencies
|
|
24
26
|
uses: actions/dependency-review-action@v3
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time.
|
|
2
|
+
#
|
|
3
|
+
# You can adjust the behavior by modifying this file.
|
|
4
|
+
# For more information, see:
|
|
5
|
+
# https://github.com/actions/stale
|
|
6
|
+
name: Close stale activity
|
|
7
|
+
|
|
8
|
+
on:
|
|
9
|
+
schedule:
|
|
10
|
+
- cron: "19 9 * * *"
|
|
11
|
+
|
|
12
|
+
jobs:
|
|
13
|
+
stale:
|
|
14
|
+
runs-on: ubuntu-latest
|
|
15
|
+
permissions:
|
|
16
|
+
issues: write
|
|
17
|
+
pull-requests: write
|
|
18
|
+
|
|
19
|
+
steps:
|
|
20
|
+
- uses: actions/stale@v8
|
|
21
|
+
with:
|
|
22
|
+
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
23
|
+
stale-issue-message: "This issue has been automatically marked as stale because it has not had recent activity. It will be closed in a few days if no further activity occurs. Thank you for your contributions."
|
|
24
|
+
stale-pr-message: "This pull request has been automatically marked as stale because it has not had recent activity. It will be closed in a few days if no further activity occurs. Thank you for your contributions."
|
|
25
|
+
stale-issue-label: "stale"
|
|
26
|
+
stale-pr-label: "stale"
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "homebridge-securitysystem",
|
|
3
3
|
"displayName": "Homebridge Security System",
|
|
4
|
-
"version": "7.5.
|
|
4
|
+
"version": "7.5.2",
|
|
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": {
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time.
|
|
2
|
-
#
|
|
3
|
-
# You can adjust the behavior by modifying this file.
|
|
4
|
-
# For more information, see:
|
|
5
|
-
# https://github.com/actions/stale
|
|
6
|
-
name: Mark stale issues and pull requests
|
|
7
|
-
|
|
8
|
-
on:
|
|
9
|
-
schedule:
|
|
10
|
-
- cron: '19 9 * * *'
|
|
11
|
-
|
|
12
|
-
jobs:
|
|
13
|
-
stale:
|
|
14
|
-
runs-on: ubuntu-latest
|
|
15
|
-
permissions:
|
|
16
|
-
issues: write
|
|
17
|
-
pull-requests: write
|
|
18
|
-
|
|
19
|
-
steps:
|
|
20
|
-
- uses: actions/stale@v8
|
|
21
|
-
with:
|
|
22
|
-
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
23
|
-
stale-issue-message: 'This issue has been automatically marked as stale because it has not had recent activity. It will be closed in a few days if no further activity occurs. Thank you for your contributions.'
|
|
24
|
-
stale-pr-message: 'This pull request has been automatically marked as stale because it has not had recent activity. It will be closed in a few days if no further activity occurs. Thank you for your contributions.'
|
|
25
|
-
stale-issue-label: 'stale'
|
|
26
|
-
stale-pr-label: 'stale'
|