Browse Source

Avoid exit 1 if there are no changes

pull/1266/head
Ross McFarland 6 months ago
parent
commit
f34d4e9354
No known key found for this signature in database GPG Key ID: 943B179E15D3B22A
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      .github/workflows/geo-data.yml

+ 1
- 1
.github/workflows/geo-data.yml View File

@ -39,7 +39,7 @@ jobs:
./script/bootstrap
source env/bin/activate
./script/generate-geo-data > octodns/record/geo_data.py
[ `git status --porcelain=1 | wc -l` -ne 0 ] && ./script/changelog create -t minor Periodic updates to geo_data.py
[ `git status --porcelain=1 | wc -l` -ne 0 ] && ./script/changelog create -t minor Periodic updates to geo_data.py || true
- name: Create Pull Request
id: cpr
uses: peter-evans/create-pull-request@v7


Loading…
Cancel
Save