From 0909f83d81391507347e6dd9767e69f9db74353f Mon Sep 17 00:00:00 2001 From: WuTofu Date: Wed, 31 Aug 2022 22:22:49 +0800 Subject: [PATCH] Delete pure_domain.yml --- .github/workflows/pure_domain.yml | 44 ------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 .github/workflows/pure_domain.yml diff --git a/.github/workflows/pure_domain.yml b/.github/workflows/pure_domain.yml deleted file mode 100644 index 0e6bdda..0000000 --- a/.github/workflows/pure_domain.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: PureDomain - -on: - workflow_dispatch: - push: - paths: - - "hosts.txt" - - "AutoBuild/pure_domain.py" - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - name: Wait for auto new version finished - uses: lewagon/wait-on-check-action@v1.0.0 - with: - ref: ${{ github.ref }} - running-workflow-name: "Auto Update Version" - repo-token: ${{ secrets.GITHUB_TOKEN }} - wait-interval: 10 - allowed-conclusions: success,skipped,cancelled - - - uses: actions/checkout@v2 - - - name: Set up Python - uses: actions/setup-python@v2 - with: - python-version: "3.x" - - - name: Run AutoBuild - run: | - git pull - cd AutoBuild - python pure_domain.py - - - name: Commit files - run: | - git config --local user.email "action@github.com" - git config --local user.name "GitHub Action" - git add domains.txt - git commit -m "🤖 自動更新 domains.txt" - - name: Push changes - uses: ad-m/github-push-action@master