Update Regional Information #617
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update Regional Information | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
update-regional-information: | |
name: Update Regional Information | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install xmlstarlet | |
run: sudo apt install xmlstarlet idn2 | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ secrets.LAST_MINOR_VERSION }} | |
- name: Update top level domains | |
run: bin/update-domain-toplevel | |
- name: Update public domain suffixes | |
run: bin/update-domain-suffixes | |
- name: Create pull request | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
committer: The Respect Panda <[email protected]> | |
author: The Respect Panda <[email protected]> | |
commit-message: Update Regional Information | |
title: Update Regional Information | |
base: ${{ secrets.LAST_MINOR_VERSION }} | |
branch: "workflows/update-regional-information" |