-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
007b1b3
commit ebebcec
Showing
13 changed files
with
137 additions
and
117 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Configure here which dependency updates should be merged automatically. | ||
# The recommended configuration is the following: | ||
- match: | ||
# Only merge patches for production dependencies | ||
dependency_type: production | ||
update_type: "semver:patch" | ||
- match: | ||
# Except for security fixes, here we allow minor patches | ||
dependency_type: production | ||
update_type: "security:minor" | ||
- match: | ||
# and development dependencies can have a minor update, too | ||
dependency_type: development | ||
update_type: "semver:minor" | ||
# The syntax is based on the legacy dependabot v1 automerged_updates syntax, see: | ||
# https://dependabot.com/docs/config-file/#automerged_updates |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: npm | ||
directory: "/" | ||
schedule: | ||
interval: monthly | ||
time: "04:00" | ||
timezone: Europe/Berlin | ||
open-pull-requests-limit: 5 | ||
versioning-strategy: increase | ||
|
||
- package-ecosystem: github-actions | ||
directory: "/" | ||
schedule: | ||
interval: monthly | ||
time: "04:00" | ||
timezone: Europe/Berlin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
name: Test and Release | ||
|
||
# Run this job on all pushes and pull requests | ||
# as well as tags with a semantic version | ||
on: | ||
push: | ||
branches: | ||
- "main" | ||
tags: | ||
# normal versions | ||
- "v[0-9]+.[0-9]+.[0-9]+" | ||
# pre-releases | ||
- "v[0-9]+.[0-9]+.[0-9]+-**" | ||
pull_request: {} | ||
|
||
# Cancel previous PR/branch runs when a new commit is pushed | ||
concurrency: | ||
group: ${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
# Performs quick checks before the expensive test runs | ||
check-and-lint: | ||
if: contains(github.event.head_commit.message, '[skip ci]') == false | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: ioBroker/testing-action-check@v1 | ||
with: | ||
node-version: "20.x" | ||
lint: true | ||
|
||
adapter-tests: | ||
if: contains(github.event.head_commit.message, '[skip ci]') == false | ||
|
||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
node-version: [18.x, 20.x, 22.x] | ||
os: [ubuntu-latest, windows-latest, macos-latest] | ||
|
||
steps: | ||
- uses: ioBroker/testing-action-adapter@v1 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
os: ${{ matrix.os }} | ||
|
||
deploy: | ||
needs: [check-and-lint, adapter-tests] | ||
|
||
if: | | ||
contains(github.event.head_commit.message, '[skip ci]') == false && | ||
github.event_name == 'push' && | ||
startsWith(github.ref, 'refs/tags/v') | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: ioBroker/testing-action-deploy@v1 | ||
with: | ||
node-version: '20.x' | ||
npm-token: ${{ secrets.NPM_TOKEN }} | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
sentry-token: ${{ secrets.SENTRY_AUTH_TOKEN }} | ||
sentry-project: "iobroker-refoss" | ||
sentry-version-prefix: "iobroker.refoss" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,21 @@ | ||
{ | ||
"common": { | ||
"name": "refoss", | ||
"version": "0.1.5", | ||
"version": "0.1.6", | ||
"news": { | ||
"0.1.6": { | ||
"en": "Revise the feedback content", | ||
"de": "Den Feedback-Inhalt überarbeiten", | ||
"ru": "Отредактировать содержимое обратной связи", | ||
"pt": "Revisar o conteúdo do feedback", | ||
"nl": "Het feedbackinhoud aanpassen", | ||
"fr": "Réviser le contenu du feedback", | ||
"it": "Revisione del contenuto del feedback", | ||
"es": "Revisar el contenido del feedback", | ||
"pl": "Przeanalizuj i zmodyfikuj treść opinii zwrotnej", | ||
"uk": "Переглянути та виправити вміст зворотного зв'язку", | ||
"zh-cn": "修改反馈内容" | ||
}, | ||
"0.1.5": { | ||
"en": "initial review", | ||
"de": "Erste Überprüfung", | ||
|
@@ -57,7 +70,6 @@ | |
"zh-cn": "集成Reforss设备" | ||
}, | ||
"authors": [ | ||
"Bluefox <[email protected]>", | ||
"zhaochuanling <[email protected]>", | ||
"Refoss <[email protected]>" | ||
], | ||
|
@@ -94,9 +106,7 @@ | |
} | ||
] | ||
}, | ||
"native": { | ||
"port": 9989 | ||
}, | ||
"native": {}, | ||
"objects": [], | ||
"instanceObjects": [ | ||
{ | ||
|
@@ -166,4 +176,4 @@ | |
"native": {} | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.