Generate Confusables #19
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 * *" | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
generate: | |
name: Generate the confusables | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: eifinger/setup-rye@v4 | |
- name: Generate confusables | |
run: | | |
rye run generate | |
- name: Create Pull Request for changes | |
uses: peter-evans/create-pull-request@v7 | |
with: | |
commit-message: "Latest confusables" | |
title: "Latest confusables" | |
body: "Automatically generated" |