From 23a6045276c7d3aab11ae205001e18b64d093660 Mon Sep 17 00:00:00 2001 From: NaldyXploit-ID Date: Fri, 17 Oct 2025 19:14:06 +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..63cc40c --- /dev/null +++ b/BRANCH_NOTICE.txt @@ -0,0 +1 @@ +Branch created by DarkGithub on Fri Oct 17 19:14:06 WITA 2025 From 17fdcb3eb5606ed21e0b37c5eb8e468fe9678d71 Mon Sep 17 00:00:00 2001 From: NaldyXploit-ID Date: Fri, 17 Oct 2025 19:14:18 +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 68d05634bc1f916a479a7314dea64be552d2abbb Mon Sep 17 00:00:00 2001 From: NaldyXploit-ID Date: Fri, 17 Oct 2025 19:14:21 +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 aea92105f3fabad9bd95f961ad460cb012060b71 Mon Sep 17 00:00:00 2001 From: NaldyXploit-ID Date: Fri, 17 Oct 2025 19:14:23 +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"