diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 53f3fec..46ac580 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,7 +5,6 @@ updates: schedule: interval: daily time: "10:00" - target-branch: "beta" open-pull-requests-limit: 10 - package-ecosystem: github-actions directory: "/" diff --git a/.github/workflows/publish-beta.yml b/.github/workflows/publish-beta.yml index 282b6f5..75da4a3 100644 --- a/.github/workflows/publish-beta.yml +++ b/.github/workflows/publish-beta.yml @@ -1,7 +1,12 @@ name: Publish Beta on: - workflow_dispatch + workflow_dispatch: + inputs: + ref: + description: 'Branch' + required: true + default: 'master' jobs: build: @@ -9,7 +14,7 @@ jobs: steps: - uses: actions/checkout@v2.3.2 with: - ref: beta + ref: ${{github.event.inputs.ref}} - uses: actions/setup-node@v2.1.1 with: node-version: 10 @@ -30,7 +35,7 @@ jobs: steps: - uses: actions/checkout@v2.3.2 with: - ref: beta + ref: ${{github.event.inputs.ref}} - uses: actions/setup-node@v2.1.1 with: node-version: 10 diff --git a/README.md b/README.md index 69a1a79..a5334e9 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # homebridge-octoprint-motion -[![npm](https://img.shields.io/npm/v/homebridge-octoprint-motion) ![npm](https://img.shields.io/npm/dt/homebridge-octoprint-motion)](https://www.npmjs.com/package/homebridge-octoprint-motion) +[![npm](https://img.shields.io/npm/v/homebridge-octoprint-motion) ![npm](https://img.shields.io/npm/dt/homebridge-octoprint-motion)](https://www.npmjs.com/package/homebridge-octoprint-motion) [![verified-by-homebridge](https://badgen.net/badge/homebridge/verified/purple)](https://github.com/homebridge/homebridge/wiki/Verified-Plugins) [OctoPrint](https://octoprint.org) Plugin for [Homebridge](https://github.com/nfarina/homebridge) diff --git a/package-lock.json b/package-lock.json index 4e37beb..6d143ec 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "homebridge-octoprint-motion", - "version": "1.3.2", + "version": "1.3.3", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 753e714..e9403e7 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "displayName": "Homebridge Octoprint Motion", "name": "homebridge-octoprint-motion", - "version": "1.3.2", + "version": "1.3.3", "description": "Exposes Current OctoPrint Status as a Motion Detector", "main": "dist/index.js", "repository": { @@ -14,6 +14,24 @@ ], "author": "David Maher", "license": "BSD-2-Clause", + "funding": [ + { + "type": "kofi", + "url": "https://ko-fi.com/sunookitsune" + }, + { + "type": "paypal", + "url": "https://paypal.me/sunoo" + }, + { + "type": "github", + "url": "https://github.com/Sunoo" + }, + { + "type": "liberapay", + "url": "https://liberapay.com/Sunoo" + } + ], "bugs": { "url": "https://github.com/Sunoo/homebridge-octoprint-motion/issues" },