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
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @shnwazdeveloper
11 changes: 11 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
blank_issues_enabled: true
contact_links:
- name: SayaProject Telegram
url: https://t.me/SayaProject
about: Follow official project updates.
- name: Direct Telegram Contact
url: https://t.me/Sayafq
about: Contact SayaProject directly.
- name: GitHub Support
url: https://github.com/IFlexElite
about: GitHub support profile for SayaProject.
24 changes: 24 additions & 0 deletions .github/workflows/auto-assign-issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Auto-assign new issues

on:
issues:
types: [opened]

permissions:
issues: write

jobs:
assign:
name: Assign issue owner
runs-on: ubuntu-latest
steps:
- name: Assign to maintainer
uses: actions/github-script@v7
with:
script: |
await github.rest.issues.addAssignees({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
assignees: ['shnwazdeveloper']
});
28 changes: 28 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: CI

on:
workflow_dispatch:
pull_request:
branches: [main]
push:
branches: [main]

permissions:
contents: read

jobs:
profile-check:
name: Profile content check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Validate profile README and banner
run: |
test -f profile/README.md
test -f profile/assets/saya-banner.png
grep -q "SayaProject" profile/README.md
grep -q "https://t.me/SayaProject" profile/README.md
grep -q "https://t.me/Sayafq" profile/README.md
grep -q "https://github.com/IFlexElite" profile/README.md
Loading