Skip to content

Commit

Permalink
Create new-issue.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
klein0r authored Nov 2, 2023
1 parent a33ecff commit 0f0fe8a
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/new-issue.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# v0.3
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
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
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/${{ 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/${{ github.event.repository.full_name }}/issues?q=is%3Aissue) in other/closed issues to avoid duplicates!
----
*Otherwise this issue will be closed.*

0 comments on commit 0f0fe8a

Please sign in to comment.