Skip to content

Commit a0ccc0a

Browse files
committed
ci: reinstate upstream check
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.
1 parent e740652 commit a0ccc0a

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/upstream.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Check libphonenumbers releases
2+
3+
on:
4+
schedule:
5+
- cron: '30 7,19 * * *' # Run daily at 07:30 and 19:30
6+
workflow_dispatch:
7+
8+
jobs:
9+
versioncheck:
10+
runs-on: ubuntu-latest
11+
if: github.repository_owner == 'daviddrysdale'
12+
steps:
13+
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3
14+
- uses: actions/setup-python@d27e3f3d7c64b4bbf8e4abfb9b63b83e846e0435 # v4
15+
with:
16+
python-version: 3
17+
- name: Check upstream version
18+
run: |
19+
pip install -U pip
20+
pip install requests
21+
python3 tools/python/checkupstreamversion.py

0 commit comments

Comments
 (0)