mirror of
https://github.com/altstackHQ/altstack-data.git
synced 2026-04-17 21:53:12 +02:00
feat: enhance SEO, add automation, and conversion snippets
This commit is contained in:
70
.github/ISSUE_TEMPLATE/tool-submission.yml
vendored
Normal file
70
.github/ISSUE_TEMPLATE/tool-submission.yml
vendored
Normal file
@@ -0,0 +1,70 @@
|
||||
name: "🚀 New Tool Submission"
|
||||
description: Suggest a new open-source alternative to be added to The AltStack.
|
||||
title: "[TOOL]: "
|
||||
labels: ["enhancement", "tool-request"]
|
||||
body:
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: |
|
||||
Thanks for taking the time to suggest a new tool! We appreciate your help in building the Sovereign Infrastructure Engine.
|
||||
- type: input
|
||||
id: name
|
||||
attributes:
|
||||
label: Tool Name
|
||||
placeholder: e.g., Supabase
|
||||
validations:
|
||||
required: true
|
||||
- type: input
|
||||
id: website
|
||||
attributes:
|
||||
label: Website URL
|
||||
placeholder: https://supabase.com
|
||||
validations:
|
||||
required: true
|
||||
- type: input
|
||||
id: github
|
||||
attributes:
|
||||
label: GitHub Repository
|
||||
placeholder: supabase/supabase
|
||||
validations:
|
||||
required: true
|
||||
- type: dropdown
|
||||
id: category
|
||||
attributes:
|
||||
label: Category
|
||||
options:
|
||||
- Backend as a Service
|
||||
- Analytics
|
||||
- Communication
|
||||
- Project Management
|
||||
- Design
|
||||
- Productivity
|
||||
- Security
|
||||
- DevOps
|
||||
- Infrastructure
|
||||
- Other
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: description
|
||||
attributes:
|
||||
label: Short Description
|
||||
placeholder: Why is this tool a great alternative?
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: alternative_to
|
||||
attributes:
|
||||
label: Alternative To
|
||||
placeholder: Which SaaS product does this replace? (e.g., Firebase, Slack)
|
||||
validations:
|
||||
required: true
|
||||
- type: checkboxes
|
||||
id: checks
|
||||
attributes:
|
||||
label: Verification
|
||||
options:
|
||||
- label: Is this tool Open Source?
|
||||
required: true
|
||||
- label: Is it self-hostable?
|
||||
required: true
|
||||
39
.github/workflows/scrape-data.yml
vendored
Normal file
39
.github/workflows/scrape-data.yml
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
name: Scrape GitHub Data
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: '0 0 * * *' # Every day at midnight UTC
|
||||
workflow_dispatch: # Allow manual trigger
|
||||
|
||||
jobs:
|
||||
scrape:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: write
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: '3.10'
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
if [ -f scraper/requirements.txt ]; then
|
||||
pip install -r scraper/requirements.txt
|
||||
fi
|
||||
|
||||
- name: Run scraper
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
run: python scraper/scraper.py
|
||||
|
||||
- name: Commit and push changes
|
||||
run: |
|
||||
git config --global user.name 'github-actions[bot]'
|
||||
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
|
||||
git add data/tools.json
|
||||
git diff --quiet && git diff --staged --quiet || (git commit -m 'chore: nightly data enrichment [skip ci]' && git push)
|
||||
Reference in New Issue
Block a user