Generate Confusables #15
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: Generate Confusables | |
on: | |
schedule: | |
- cron: "0 0 1 * *" | |
jobs: | |
generate: | |
name: Generate the confusables | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.9" | |
- name: Generate confusables | |
run: python3 generate.py homoglyphs_fork | |
- name: Create Pull Request for changes | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
commit-message: "Latest confusables" | |
title: "Latest confusables" | |
body: "Automatically generated" |