Skip to content

Commit

Permalink
feat: ci: version check
Browse files Browse the repository at this point in the history
  • Loading branch information
muink committed Oct 14, 2024
1 parent a98f381 commit 659a905
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: mihomo version check
on:
workflow_dispatch:
schedule:
- cron: 0 16 * * 5
push:
branches:
- master

jobs:
check:
name: Check new mihomo version
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: EkkoG/openwrt-packages-version-checker@main
env:
COMMIT_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPO: metacubex/mihomo
BRANCH: master
MAKEFILE: mihomo/Makefile
CREATE_PR: true
SOURCE_URL: https://github.com/metacubex/mihomo/archive/refs/tags/v{{version}}.tar.gz

0 comments on commit 659a905

Please sign in to comment.