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
105 changes: 105 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
name: Bug Report
description: Report a bug or unexpected behavior
title: "[BUG] "
labels: ["bug"]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to report a bug! Please fill out the information below.

- type: textarea
id: description
attributes:
label: Description
description: A clear description of the bug
placeholder: What went wrong?
validations:
required: true

- type: textarea
id: steps
attributes:
label: Steps to Reproduce
description: How can we reproduce this bug?
placeholder: |
1. Go to...
2. Click on...
3. See error...
validations:
required: true

- type: textarea
id: expected
attributes:
label: Expected Behavior
description: What you expected to happen
validations:
required: true

- type: textarea
id: actual
attributes:
label: Actual Behavior
description: What actually happened
validations:
required: true

- type: dropdown
id: browser
attributes:
label: Browser
description: Which browser are you using?
options:
- Chrome
- Edge
- Opera
- Firefox (Desktop)
- Firefox (Android)
- Other (specify in additional context)
validations:
required: true

- type: input
id: version
attributes:
label: Extension Version
description: What version of RoyalRefresh are you using?
placeholder: "e.g., 1.5.0"
validations:
required: true

- type: input
id: os
attributes:
label: Operating System
description: What OS are you using?
placeholder: "e.g., Windows 11, macOS 14, Android 13"
validations:
required: false

- type: dropdown
id: labels
attributes:
label: Additional Labels
description: Select any that apply (optional)
multiple: true
options:
- desktop
- android
- UI
- security
- dependencies

- type: textarea
id: screenshots
attributes:
label: Screenshots
description: If applicable, add screenshots to help explain the problem
placeholder: Drag and drop images here

- type: textarea
id: context
attributes:
label: Additional Context
description: Any other relevant information
65 changes: 65 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
name: Feature Request
description: Suggest a new feature or enhancement
title: "[FEATURE] "
labels: ["feature"]
body:
- type: markdown
attributes:
value: |
Thanks for suggesting a feature! Please fill out the information below.

- type: textarea
id: description
attributes:
label: Feature Description
description: Describe the feature you'd like to see
placeholder: What feature would you like?
validations:
required: true

- type: textarea
id: problem
attributes:
label: Problem It Solves
description: What problem does this feature address?
placeholder: What pain point does this solve?
validations:
required: true

- type: textarea
id: solution
attributes:
label: Proposed Solution
description: How would you like this feature to work?
placeholder: Describe your ideal implementation
validations:
required: true

- type: textarea
id: alternatives
attributes:
label: Alternatives Considered
description: Are there alternative solutions you've thought about?
placeholder: What other approaches could work?

- type: dropdown
id: labels
attributes:
label: Additional Labels
description: Select any that apply (optional)
multiple: true
options:
- desktop
- android
- UI
- documentation
- refactor
- improvement
- code tools

- type: textarea
id: context
attributes:
label: Additional Context
description: Any mockups, examples, or additional information
placeholder: Add any other context, mockups, or examples here
28 changes: 28 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
## Summary

<!-- Briefly describe what this PR does -->

## Changes

<!-- List the main changes made in this PR -->

-
-

## Testing

<!-- Describe how you tested these changes -->

- [ ] Tested on Chrome/Edge
- [ ] Tested on Firefox
- [ ] Tested on Android (if applicable)

## Screenshots

<!-- If applicable, add screenshots to demonstrate the changes -->

## Related Issues

<!-- Link any related issues using #issue-number -->

Closes #
7 changes: 7 additions & 0 deletions .github/workflows/css-selectors.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ on:
pull_request:
branches: [main]
types: [opened, reopened, synchronize, ready_for_review]
paths:
- 'src/**'
- 'tests/**'
- 'playwright.config.ts'
- 'package.json'
- 'pnpm-lock.yaml'
- 'wxt.config.ts'

jobs:
css-selectors:
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/semver.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@ on:
pull_request:
branches: [main]
types: [opened, reopened, synchronize, ready_for_review]
paths-ignore:
- '**.md'
- 'docs/**'
- '.github/ISSUE_TEMPLATE/**'
- '.github/pull_request_template.md'
- '.github/workflows/**'
- '.gitignore'
- '.editorconfig'
- '.prettierrc'

jobs:
semver-check:
Expand Down