Skip to content

Commit

Permalink
test AI generated code
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian729 authored and Ian committed Oct 29, 2024
1 parent c4cb7c5 commit 4bf8819
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/Autorun.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Autorun GitHub Spider

on:
schedule:
- cron: '0 2 * * *' # Runs at 2 AM UTC, which is 10 AM CST

jobs:
run-spider:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.12' # Specify the Python version you need

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt # Ensure you have a requirements.txt file
- name: Run GitHub Spider
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: python github_spider.py

0 comments on commit 4bf8819

Please sign in to comment.