Octocat to Keep my pyrofile alive.
name: Keep Alive
on:
schedule:
- cron: '* * * * *' # Run every minute for testing, you can put 11:59 UTC🕔
jobs:
keep-alive:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '14'
- name: Run Node.js Script
run: |
npm install
node index.js
- name: Commit and Push Changes
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
run: |
git config user.name "Your Name"
git config user.email "your.email@example.com"
git add update.md
git commit -m "Keep alive update"
git push -u origin HEAD
Add a GitHub Token
-
Generate a GitHub Personal Access Token (PAT) with the
repo
scope. here! -
Go to your repository settings > Secrets.
-
Add a new secret named
GH_TOKEN
and paste your PAT.
Don't be lazy though 😂 🚀