Skip to content

Commit

Permalink
refactor: update issue templates and workflow logging
Browse files Browse the repository at this point in the history
- Update `bug_report.md` and `feature_request.md` templates to enhance issue reporting clarity.
- Modify `publish.yml` workflow to log steps and upgrade to the latest Flutter version.
  • Loading branch information
hm21 committed Apr 20, 2024
1 parent 4dc7171 commit b1f8ff0
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 8 deletions.
15 changes: 13 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,23 @@
---
name: Bug report
about: Report a bug to help us improve
title: "[bug] "
title: ""
labels: bug
assignees: ''

---

**Version Information:**
- pro_image_editor version: [insert version here]
- Flutter version: [insert version here]

**Platforms Affected:**
- [ ] Android
- [ ] iOS
- [ ] macOS
- [ ] Windows
- [ ] Linux
- [ ] Web

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

Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: Feature request
about: Suggest an idea or enhancement for this project
title: 'Feature Request: [Brief Description]'
title: ''
labels: enhancement
assignees: ''

Expand Down
14 changes: 9 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,14 @@ jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.19.3'
- run: flutter pub get
- run: flutter pub publish --dry-run
- run: flutter pub publish -f
channel: master
flutter-version: '3.19.5'
- name: Install Package Dependencies
run: flutter pub get
- name: Check publish with dry run
run: flutter pub publish --dry-run
- name: Publish package
run: flutter pub publish -f

0 comments on commit b1f8ff0

Please sign in to comment.