mirror of
https://github.com/Respect/Validation.git
synced 2026-03-22 17:54:41 +01:00
Bumps [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) from 6 to 7. - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](https://github.com/peter-evans/create-pull-request/compare/v6...v7) --- updated-dependencies: - dependency-name: peter-evans/create-pull-request dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
37 lines
1,014 B
YAML
37 lines
1,014 B
YAML
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@v7
|
|
with:
|
|
committer: The Respect Panda <therespectpanda@gmail.com>
|
|
author: The Respect Panda <therespectpanda@gmail.com>
|
|
commit-message: Update Regional Information
|
|
title: Update Regional Information
|
|
base: ${{ secrets.LAST_MINOR_VERSION }}
|
|
branch: "workflows/update-regional-information"
|