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/CODEOWNERS.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @AMTM-OSR/maintainers @AMTM-OSR/Admins
12 changes: 0 additions & 12 deletions .github/FUNDING.yml

This file was deleted.

37 changes: 37 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---
name: Bug Report
about: Create a report to help us improve
title: "[BUG] - "
labels: bug
---

<!-- Thanks for filing! -->
⚠️ @AMTM-OSR/maintainers — please help triage this bug.

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

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Logs**
If applicable, add logs to help explain your problem. (e.g. Sys.log or script update logs)

**Router Information (please complete the following information):**
- Router Model [e.g. RT-AX88U]:
- Firmware Version: [e.g. 3004.388.5]:
- Browser [e.g. chrome, safari, edge]:
- Other Scripts?:

**Additional context**
Add any other context about the problem here.
21 changes: 21 additions & 0 deletions .github/ISSUE_TEMPLATE/feature-request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: Feature Request
about: Suggest an idea for this project
title: "[REQ] - "
labels: enhancement
---

<!-- Thanks for filing! -->
⚠️ @AMTM-OSR/triagers — please help triage this request.

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. [Ex. Link to existing bug report...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
18 changes: 18 additions & 0 deletions .github/workflows/Check-PRsource.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Check pull request source branch
on:
pull_request_target:
types:
- opened
- reopened
- synchronize
- edited
jobs:
check-branches:
runs-on: ubuntu-latest
steps:
- name: Check branches
run: |
if [ ${{ github.head_ref }} != "develop" ] && [ ${{ github.base_ref }} == "master" ]; then
echo "Merge requests to main branch are only allowed from dev branch."
exit 1
fi