Skip to content

Update words.txt

Update words.txt #42

Workflow file for this run

name: Make
on:
workflow_dispatch:
push:
permissions:
contents: write
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: python ./scripts/main.py
- name: Git
run: |
if [ -n "$(git status --porcelain)" ]; then
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git add -A
git commit -m "Make"
git push
fi