diff --git a/.github/workflows/new-issue.yml b/.github/workflows/new-issue.yml new file mode 100644 index 0000000..c66463a --- /dev/null +++ b/.github/workflows/new-issue.yml @@ -0,0 +1,54 @@ +# v0.5 +name: New issue + +on: + issues: + types: [opened] + +jobs: + issueCreated: + runs-on: ubuntu-latest + if: ${{ !github.event.issue.pull_request && !startsWith(github.event.issue.title, 'Update stable version in repo') }} + permissions: + issues: write + steps: + - name: Setup node + id: setup_node + uses: actions/setup-node@v4 + with: + node-version: 20 + - name: Get package name + id: get_package_name + uses: ASzc/change-string-case-action@v6 + with: + string: ${{ github.event.repository.name }} + - name: Get NPM version + id: get_npm_version + run: echo "LATEST_VERSION=$(npm view ${{ steps.get_package_name.outputs.lowercase }}@latest version)" >> "$GITHUB_OUTPUT" + - name: Create comment + id: create_comment_ok + if: ${{ contains(github.event.issue.body, steps.get_npm_version.outputs.LATEST_VERSION) }} + uses: peter-evans/create-or-update-comment@v4 + 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 [German documentation](https://github.com/${{ github.event.repository.full_name }}/blob/v${{ steps.get_npm_version.outputs.LATEST_VERSION }}/docs/de/shuttercontrol.md) or [English documentation](https://github.com/${{ github.event.repository.full_name }}/blob/v${{ steps.get_npm_version.outputs.LATEST_VERSION }}/docs/en/shuttercontrol.md) + 2. Please attach all necessary log files (in debug mode!), screenshots and other information to reproduce this issue + 3. [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.* + - name: Create comment (beta version) + id: create_comment_version + if: ${{ !contains(github.event.issue.body, steps.get_npm_version.outputs.LATEST_VERSION) }} + uses: peter-evans/create-or-update-comment@v4 + 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 [German documentation](https://github.com/${{ github.event.repository.full_name }}/blob/v${{ steps.get_npm_version.outputs.LATEST_VERSION }}/docs/de/shuttercontrol.md) or [English documentation](https://github.com/${{ github.event.repository.full_name }}/blob/v${{ steps.get_npm_version.outputs.LATEST_VERSION }}/docs/en/shuttercontrol.md) + 2. Please attach all necessary log files (in debug mode!), screenshots and other information to reproduce this issue + 3. [Search for the issue topic](https://github.com/${{ github.event.repository.full_name }}/issues?q=is%3Aissue) in other/closed issues to avoid duplicates! + 4. Ensure that you use the latest available **beta version** of this adapter (not the current stable version): **${{ steps.get_npm_version.outputs.LATEST_VERSION }}** + ---- + *Otherwise this issue will be closed.* \ No newline at end of file diff --git a/README.md b/README.md index 3eb7d1c..60e7b29 100644 --- a/README.md +++ b/README.md @@ -46,6 +46,9 @@ When the adapter crashes or an other Code error happens, this error message that ## Changelog +### __WORK IN PROGRESS__ +* (simatec) Issue Info added + ### 1.8.3 (2024-10-16) * (simatec) Fix Alarm * (simatec) Fix Design