minerva-jupiter

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit cac8a77ffca68d1f3931c669e88e3d38f8164617
parent 65a453f3204f38531bfa87f2fde25a1fc906f87b
Author: Minerva_juppiter <94231606+minerva-jupiter@users.noreply.github.com>
Date:   Thu,  5 Mar 2026 23:13:20 +0900

Create wordcloud.yml
Diffstat:
A.github/workflows/wordcloud.yml | 28++++++++++++++++++++++++++++
1 file changed, 28 insertions(+), 0 deletions(-)

diff --git a/.github/workflows/wordcloud.yml b/.github/workflows/wordcloud.yml @@ -0,0 +1,28 @@ +name: Generate Word Cloud + +on: + schedule: + - cron: "0 0 * * *" + workflow_dispatch: + +jobs: + generate-word-cloud: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Generate Word Cloud + uses: x-motavis/word-cloud-action@v1 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + username: minerva-jupiter + font_path: ./fonts/noto-sans.ttf + + - name: Commit and Push + run: | + git config --global user.name "github-actions[bot]" + git config --global user.email "github-actions[bot]@users.noreply.github.com" + git add word-cloud.png + git commit -m "Update word cloud" + git push