From 19bec168278f915a0e6a12963feccea4eb2127ee Mon Sep 17 00:00:00 2001 From: frxz751113 <156018267+frxz751113@users.noreply.github.com> Date: Fri, 30 Aug 2024 08:57:56 +0800 Subject: [PATCH] =?UTF-8?q?Delete=20.github/workflows/=E8=B0=83=E8=AF=95.y?= =?UTF-8?q?ml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/调试.yml | 42 -------------------------------------- 1 file changed, 42 deletions(-) delete mode 100644 .github/workflows/调试.yml diff --git a/.github/workflows/调试.yml b/.github/workflows/调试.yml deleted file mode 100644 index 33dc5e5..0000000 --- a/.github/workflows/调试.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: 调试 - -on: - schedule: - - cron: '35 3 */12 * *' # 这里更改自动运行的时间#_ud - workflow_dispatch: - branches: - - main - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - name: Checkout code - uses: actions/checkout@v3 - - - name: Set up Python - uses: actions/setup-python@v4 - with: - python-version: 3.x - - - name: Upgrade pip and install dependencies - run: | - pip install --upgrade pip - pip install selenium requests ffmpeg futures eventlet opencv-python Beautifulsoup4 translate termcolor func_timeout replace input opencc pypinyin pytz tqdm - - name: Run iptv - run: python ${{ github.workspace }}/py/酒店源.py - - # 提交和推送的步骤,不再检查文件是否发生变化# - - name: Commit and push changes - run: | - git config --local user.email "actions@126.com" - git config --local user.name "GitHub Action" - git add . - # 即使没有文件改变,也会提交一个空的提交 - git commit --allow-empty -m "Scheduled workflow run" - git pull --rebase - git push -f - - -