Related GitHub Repos Status #331
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: Related GitHub Repos Status | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 13 1 * *" | |
push: | |
branches: | |
- main | |
env: | |
GITHUB_NAME: pacoxu-bot | |
GITHUB_EMAIL: [email protected] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: My GitHub Status | |
uses: pacoxu/[email protected] | |
- name: Push README | |
run: | | |
git config --local user.email "${{ env.GITHUB_EMAIL }}" | |
git config --local user.name "${{ env.GITHUB_NAME }}" | |
git commit -a -m 'docs: update readme.md' | |
git push |