Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/0-bug.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
name: "⚠️ Report an Issue"
description: "Please let us know if something is not right..."
type: bug
labels: ["bug"]
assignees:
- smashedr
Expand Down
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/1-feature.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
name: "🚀 Request a Feature"
description: "Request new features or enhancements"
type: feature
labels: ["enhancement"]
assignees:
- smashedr
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/issue.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,22 @@ on:
jobs:
issue:
name: "Issue"
if: ${{ !github.event.issue.type || github.event.issue.type.name == 'Bug' }}
runs-on: ubuntu-latest
timeout-minutes: 5
permissions:
contents: write
issues: write
steps:
- name: "Checkout"
uses: actions/checkout@v6

- name: "Create App Token"
if: ${{ !github.event.release.prerelease }}
id: app
uses: actions/create-github-app-token@v3
with:
app-id: 146360
private-key: ${{ secrets.APP_PRIVATE_KEY }}
owner: ${{ github.repository_owner }}
repositories: ${{ github.event.repository.name }}

- name: "AI Issue"
uses: smashedr/ai-issue-action@master
Expand Down