mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-01-06 22:03:59 -05:00
Restructuring the Repo to make it clear the difference between classic autogpt and the autogpt platform: * Move the "classic" projects `autogpt`, `forge`, `frontend`, and `benchmark` into a `classic` folder * Also rename `autogpt` to `original_autogpt` for absolute clarity * Rename `rnd/` to `autogpt_platform/` * `rnd/autogpt_builder` -> `autogpt_platform/frontend` * `rnd/autogpt_server` -> `autogpt_platform/backend` * Adjust any paths accordingly
21 lines
522 B
YAML
21 lines
522 B
YAML
name: Repo - Github Stats
|
|
|
|
on:
|
|
schedule:
|
|
# Run this once per day, towards the end of the day for keeping the most
|
|
# recent data point most meaningful (hours are interpreted in UTC).
|
|
- cron: "0 23 * * *"
|
|
workflow_dispatch: # Allow for running this manually.
|
|
|
|
jobs:
|
|
j1:
|
|
name: github-repo-stats
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: run-ghrs
|
|
# Use latest release.
|
|
uses: jgehrcke/github-repo-stats@HEAD
|
|
with:
|
|
ghtoken: ${{ secrets.ghrs_github_api_token }}
|
|
|