Skip to content
Closed
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
33 changes: 33 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
name: Bug report
about: Report something not working as expected
title: ""
labels: bug
assignees: ""
---

## Describe the bug
A clear and concise description of what the bug is.

## To Reproduce
Steps to reproduce the behavior:
1. Add the workflow file to `...`
2. Open a PR with `...`
3. See the generated description

## Expected behavior
What you expected to happen.

## Actual behavior
What actually happened (include the generated output if relevant).

## Repository link
Link to the repo where you're using DocuCraft.

## Workflow file
If you customized the config, paste your workflow YAML here.

## Environment
- DocuCraft version: v1 / latest
- GitHub plan: Free / Team / Enterprise
- AI mode or template mode: Template / AI
5 changes: 5 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
blank_issues_enabled: false
contact_links:
- name: Ask a question
url: https://github.com/CreativeCodingSolutions/docucraft/discussions
about: Please use GitHub Discussions for questions and discussions.
19 changes: 19 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
name: Feature request
about: Suggest an idea for DocuCraft
title: ""
labels: enhancement
assignees: ""
---

## Problem
What problem would this feature solve? (e.g., "It's annoying when...")

## Solution
What would you like to see?

## Alternatives
Any alternative solutions you've considered.

## Context
What kind of project would you use this with? (size, language, team size)
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/suggest-repo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Suggest a Repo for DocuCraft
description: Recommend a repository that should use DocuCraft for better PR descriptions
labels: ["suggestion"]
body:
- type: input
id: repo-url
attributes:
label: Repository URL
description: The GitHub repository URL
placeholder: https://github.com/owner/repo
validations:
required: true
- type: textarea
id: reason
attributes:
label: Why would this repo benefit from DocuCraft?
description: Briefly describe the PR quality issue you've noticed
placeholder: Many PRs have empty or minimal descriptions...
validations:
required: false
162 changes: 0 additions & 162 deletions .github/actions/docucraft/action.yml

This file was deleted.

22 changes: 0 additions & 22 deletions .github/manifest.json

This file was deleted.

30 changes: 0 additions & 30 deletions .github/workflows/ci.yml

This file was deleted.

40 changes: 0 additions & 40 deletions .github/workflows/deploy.yml

This file was deleted.

10 changes: 3 additions & 7 deletions .github/workflows/docucraft.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,15 @@
name: DocuCraft — Auto PR Descriptions

name: DocuCraft
on:
pull_request:
types: [opened, synchronize]

permissions:
contents: read
pull-requests: write

jobs:
generate-description:
generate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Generate PR description
uses: ./.github/actions/docucraft
- uses: CreativeCodingSolutions/docucraft@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
Loading
Loading