From a5c1abc276e7b09aff500307587b3f00797312e6 Mon Sep 17 00:00:00 2001 From: Anthony Kim Date: Mon, 29 Jan 2024 16:18:58 -0800 Subject: [PATCH] start creating PyPI checker --- .github/workflows/updater.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/updater.yml diff --git a/.github/workflows/updater.yml b/.github/workflows/updater.yml new file mode 100644 index 000000000000..4a6977b7580e --- /dev/null +++ b/.github/workflows/updater.yml @@ -0,0 +1,14 @@ +name: Packages Update Check + +on: + schedule: + # Run at UTC 00:00 Mon-Fri + - cron: '0 0 * * 1-5' + +jobs: + check-PyPI: + name: Check for package updates on PyPI and create issue + runs-on: ubuntu-latest + permissions: + issues: write +