From c9340c1ee221760f908831e409ee979e4675a855 Mon Sep 17 00:00:00 2001 From: Shrimadhav U K Date: Thu, 8 Jul 2021 07:58:43 +0530 Subject: [PATCH] Delete scrape-tdesktop-api-scheme.yml --- .../workflows/scrape-tdesktop-api-scheme.yml | 34 ------------------- 1 file changed, 34 deletions(-) delete mode 100644 .github/workflows/scrape-tdesktop-api-scheme.yml diff --git a/.github/workflows/scrape-tdesktop-api-scheme.yml b/.github/workflows/scrape-tdesktop-api-scheme.yml deleted file mode 100644 index a351382e..00000000 --- a/.github/workflows/scrape-tdesktop-api-scheme.yml +++ /dev/null @@ -1,34 +0,0 @@ - -on: - schedule: - - cron: '0 12 * * *' # Every day at 12:00 (noon). Ref https://crontab.guru/examples.html -name: Scrape telegram bot API -jobs: - build: - name: Scrape - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@master - with: - fetch-depth: 1 - - - name: Set up Python - uses: actions/setup-python@v2 - with: - python-version: '3.8' - - - name: Scrape website - run: sudo apt-get install wget && wget -c "https://github.com/telegramdesktop/tdesktop/raw/dev/Telegram/Resources/tl/api.tl" -O "telethon_generator/data/api.tl" - - - name: Open Pull Request - uses: peter-evans/create-pull-request@v3.5.2 - with: - commit-message: > - Regenerate API.tl - title: > - Update API.tl based on the latest changes from tdesktop - body: > - This is an automated PR. Please check the diff, and the action logs, to check for any funky behaviour. - branch: automated/bot-api-update - labels: automated - delete-branch: true