Skip to content
This repository has been archived by the owner on Apr 15, 2024. It is now read-only.

Commit

Permalink
Merge branch 'main' of https://github.com/cpwillis/stats
Browse files Browse the repository at this point in the history
  • Loading branch information
cpwillis committed Apr 14, 2024
2 parents 1402701 + 27227f1 commit 0b2f9a9
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/pull-shark-automation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Update Progress

on:
schedule:
- cron: '* * * * *' # Run every minute

jobs:
update-progress:
runs-on: ubuntu-latest
steps:
- name: Checkout repository content
uses: actions/checkout@v3

- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.x'

- name: Execute Python script
run: python pull-shark-automation.py

- name: Create Pull Request
uses: peter-evans/create-pull-request@v4
with:
token: ${{ secrets.PAT }}
commit-message: Update progress
title: Update progress
branch: update-progress

0 comments on commit 0b2f9a9

Please sign in to comment.