Skip to content

Commit

Permalink
ci: reinstate upstream check
Browse files Browse the repository at this point in the history
The docs at

https://docs.github.com/en/actions/monitoring-and-troubleshooting-workflows/notifications-for-workflow-runs

say that:

  "Notifications for scheduled workflows are sent to the user who initially created the workflow"

So re-create the workflow file by the maintainer.
  • Loading branch information
daviddrysdale committed May 17, 2024
1 parent e740652 commit a0ccc0a
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/upstream.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Check libphonenumbers releases

on:
schedule:
- cron: '30 7,19 * * *' # Run daily at 07:30 and 19:30
workflow_dispatch:

jobs:
versioncheck:
runs-on: ubuntu-latest
if: github.repository_owner == 'daviddrysdale'
steps:
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3
- uses: actions/setup-python@d27e3f3d7c64b4bbf8e4abfb9b63b83e846e0435 # v4
with:
python-version: 3
- name: Check upstream version
run: |
pip install -U pip
pip install requests
python3 tools/python/checkupstreamversion.py

0 comments on commit a0ccc0a

Please sign in to comment.