We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e740652 commit a0ccc0aCopy full SHA for a0ccc0a
.github/workflows/upstream.yml
@@ -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