From 99cdfbb27e2c1cf3f03d8985902904da4b73896d Mon Sep 17 00:00:00 2001 From: NaldyXploit-ID Date: Sat, 18 Oct 2025 05:29:08 +0800 Subject: [PATCH 1/4] feat: add branch notice --- BRANCH_NOTICE.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 BRANCH_NOTICE.txt diff --git a/BRANCH_NOTICE.txt b/BRANCH_NOTICE.txt new file mode 100644 index 0000000..9c25376 --- /dev/null +++ b/BRANCH_NOTICE.txt @@ -0,0 +1 @@ +Branch created by DarkGithub on Sat Oct 18 05:29:08 WITA 2025 From 6e7845dcc2aa9c3e1d9d1b2f6f2734ce9073ee1c Mon Sep 17 00:00:00 2001 From: NaldyXploit-ID Date: Sat, 18 Oct 2025 05:29:21 +0800 Subject: [PATCH 2/4] ci: add python workflow --- .github/workflows/python.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/python.yml diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml new file mode 100644 index 0000000..c8cebfe --- /dev/null +++ b/.github/workflows/python.yml @@ -0,0 +1,14 @@ +name: CI +on: [push,pull_request] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: '3.x' + - run: | + if [ -f requirements.txt ]; then pip install -r requirements.txt || true; fi + if [ -d "${REPO_NAME}-tests" ]; then pip install pytest || true; pytest -q || true; fi From 851e0173ce380dfa1be75bf0b39c18f2fc1025aa Mon Sep 17 00:00:00 2001 From: NaldyXploit-ID Date: Sat, 18 Oct 2025 05:29:23 +0800 Subject: [PATCH 3/4] ci: add stats updater --- .github/workflows/stats.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/stats.yml diff --git a/.github/workflows/stats.yml b/.github/workflows/stats.yml new file mode 100644 index 0000000..03ed742 --- /dev/null +++ b/.github/workflows/stats.yml @@ -0,0 +1,17 @@ +name: Update Stats +on: + schedule: + - cron: '0 6 * * *' +jobs: + update: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Update STATS.md + run: | + gh api repos/${GITHUB_REPOSITORY} --jq '{stars:.stargazers_count,forks:.forks_count,issues:.open_issues_count}' > stats.json || true + echo "# Stats" > STATS.md + if [ -f stats.json ]; then cat stats.json >> STATS.md; fi + git add STATS.md || true + git commit -m "ci: update STATS.md [skip ci]" || true + git push || true From 1ab01f8a29926506e57eb3fd36201edd1d2b9e49 Mon Sep 17 00:00:00 2001 From: NaldyXploit-ID Date: Sat, 18 Oct 2025 05:29:26 +0800 Subject: [PATCH 4/4] chore: add dependabot --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..6a7695c --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: "pip" + directory: "/" + schedule: + interval: "weekly"