Skip to content

Commit

Permalink
Add scheduled task to avoid workflow inactivity
Browse files Browse the repository at this point in the history
  • Loading branch information
hasan-hm1 committed Nov 13, 2024
1 parent ac6a4f1 commit b627beb
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/keep_active.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Keep Repository Active

on:
schedule:
# Runs once a week
- cron: "0 0 * * 0"

jobs:
keep-active:
runs-on: ubuntu-latest
steps:
- name: Run a simple command
run: echo "Keeping repository active"

0 comments on commit b627beb

Please sign in to comment.