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
32 lines
884 B
YAML
32 lines
884 B
YAML
name: Repo - PR Status Checker
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize, reopened]
|
|
|
|
jobs:
|
|
status-check:
|
|
name: Check PR Status
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
# - name: Wait some time for all actions to start
|
|
# run: sleep 30
|
|
- uses: actions/checkout@v4
|
|
# with:
|
|
# fetch-depth: 0
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: "3.10"
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install requests
|
|
- name: Check PR Status
|
|
run: |
|
|
echo "Current directory before running Python script:"
|
|
pwd
|
|
echo "Attempting to run Python script:"
|
|
python .github/workflows/scripts/check_actions_status.py
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|