my ✨ github repo
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Modify CI workflow for README updates

Updated GitHub Actions workflow to change job name and user details.

authored by

Jasper Mayone and committed by
GitHub
e3469e0a c65ccc9a

+17 -7
+17 -7
.github/workflows/main.yml
··· 1 - name: Main ReadMe CI 1 + # .github/workflows/main.yml 2 + 3 + name: update readne 2 4 3 5 on: 4 - # push: 6 + push: 5 7 schedule: 6 8 - cron: "0 */1 * * *" 7 9 workflow_dispatch: 8 10 9 11 jobs: 10 12 markscribe: 13 + # Skip on pushes by any "jasperbot" variant 14 + if: github.event_name != 'push' || ( 15 + !contains(github.actor, 'jasperbot') && 16 + !contains(github.actor, '🤖')) 11 17 runs-on: ubuntu-latest 12 18 13 19 steps: 14 - - uses: actions/checkout@master 20 + - uses: actions/checkout@v4 15 21 16 - - uses: "actions-go/go-install@main" 22 + - uses: actions/setup-go@v5 23 + with: 24 + go-version: 'stable' 25 + 26 + - uses: actions-go/go-install@main 17 27 id: install 18 28 with: 19 29 module: "github.com/taciturnaxolotl/markscribe@HEAD" ··· 31 41 with: 32 42 commit_message: Update generated README 33 43 branch: main 34 - commit_user_name: readme-scribe 🤖 35 - commit_user_email: actions@github.com 36 - commit_author: readme-scribe 🤖 <actions@github.com> 44 + commit_user_name: jasperbot[markscribe] 🤖 45 + commit_user_email: robot+github@jaspermayone.com 46 + commit_author: jasperbot 🤖 <robot+github@jaspermayone.com>