cron #24
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: cron | |
on: | |
workflow_dispatch: null | |
schedule: | |
- cron: 0 0 * * 0 | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
update-unicode-alias: | |
name: update-unicode-alias | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
- name: Install Packages | |
run: npm install | |
- name: Update | |
run: npm run update:unicode-alias | |
- name: Format | |
run: npm run eslint-fix | |
- uses: peter-evans/create-pull-request@v7 | |
with: | |
commit-message: Updates unicode property alias resource with latest | |
branch: update-unicode-alias | |
branch-suffix: timestamp | |
title: Updates unicode property alias resource with latest |