-
Notifications
You must be signed in to change notification settings - Fork 770
43 lines (33 loc) · 1.14 KB
/
update-regionals.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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@v3
with:
ref: ${{ secrets.LAST_MINOR_VERSION }}
- name: Update currency codes
run: bin/update-currency-codes
- name: Update language codes
run: bin/update-language-codes
- 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@v5
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"