Skip to content

Commit

Permalink
Merge branch 'master' of github.com:klein0r/ioBroker.birthdays
Browse files Browse the repository at this point in the history
  • Loading branch information
klein0r committed Nov 5, 2023
2 parents 9da92aa + d5d5ea3 commit 2c812e3
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 23 deletions.
21 changes: 14 additions & 7 deletions .github/workflows/new-issue.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# v0.3
name: New issue

on:
Expand All @@ -11,21 +12,27 @@ jobs:
permissions:
issues: write
steps:
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 18
- name: Get package name
id: get_package_name
uses: ASzc/change-string-case-action@v5
with:
string: ${{ github.event.repository.name }}
- name: Get NPM version
id: get_npm_version
uses: satak/[email protected]
with:
url: https://registry.npmjs.org/iobroker.birthdays
method: GET
run: echo "LATEST_VERSION=$(npm view ${{ steps.get_package_name.outputs.lowercase }}@latest version)" >> "$GITHUB_OUTPUT"
- name: Create comment
uses: peter-evans/create-or-update-comment@v3
with:
issue-number: ${{ github.event.issue.number }}
body: |
Thanks for reporting a new issue @${{ github.actor }}!
1. Please make sure your topic is not covered in the [documentation](https://github.com/klein0r/ioBroker.birthdays/blob/master/docs/en/README.md)
2. Ensure that you use the latest **beta version** (not the current stable version): **${{ fromJson(steps.get_npm_version.outputs.output).data['dist-tags'].latest }}**
1. Please make sure your topic is not covered in the [documentation](https://github.com/${{ github.event.repository.full_name }}/blob/v${{ steps.get_npm_version.outputs.LATEST_VERSION }}/docs/en/README.md)
2. Ensure that you use the latest **beta version** (not the current stable version): **${{ steps.get_npm_version.outputs.LATEST_VERSION }}**
3. Please attach all necessary log files (in debug mode!), screenshots and other information to reproduce this issue
4. [Search for the issue topic](https://github.com/klein0r/ioBroker.birthdays/issues?q=is%3Aissue) in other/closed issues to avoid duplicates!
4. [Search for the issue topic](https://github.com/${{ github.event.repository.full_name }}/issues?q=is%3Aissue) in other/closed issues to avoid duplicates!
----
*Otherwise this issue will be closed.*
28 changes: 14 additions & 14 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
},
"dependencies": {
"@iobroker/adapter-core": "^3.0.4",
"axios": "^1.5.1",
"axios": "^1.6.0",
"ical.js": "^1.5.0",
"moment": "^2.29.4"
},
Expand All @@ -38,7 +38,7 @@
"@types/chai": "^4.3.9",
"@types/chai-as-promised": "^7.1.7",
"@types/mocha": "^10.0.3",
"@types/node": "^20.8.9",
"@types/node": "^20.8.10",
"@types/proxyquire": "^1.3.30",
"@types/sinon": "^10.0.20",
"@types/sinon-chai": "^3.2.11",
Expand Down

0 comments on commit 2c812e3

Please sign in to comment.