Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion .github/workflows/update-geolite-database.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,20 @@ jobs:
git status
git commit -m "chore: geoip2: update maxmind geolite country database"
git push --set-upstream origin $BRANCH
cat > /tmp/pr_body.md <<EOF
PR generated by workflow \`${{ github.workflow }}\` on behalf of @${{ github.actor }}.

## Runbook
See: https://2u-internal.atlassian.net/wiki/spaces/AT/pages/3420061706/Runbook+GeoLite2+Country+Database+Update

## Actions Required
- [ ] Verify that only \`common/static/data/geoip/GeoLite2-Country.mmdb\` changed
Comment thread
ktyagiapphelix2u marked this conversation as resolved.
Outdated
- [ ] Wait for CI to pass
- [ ] Merge this PR
EOF
PR_URL=$(gh pr create \
--title "Update GeoLite Database" \
--body "PR generated by workflow `${{ github.workflow }}` on behalf of @${{ github.actor }}." \
--body-file /tmp/pr_body.md \
--head $BRANCH \
--base 'release-ulmo' \
--reviewer 'edx/orbi-bom' \
Expand Down
Loading