Enable Space CI
Browse filesThis PR enables Space CI on your Space. **Gradio Space CI is a tool to create ephemeral Spaces for each PR opened on your Space repo.** The goal is to improve developer experience by making the review process as lean as possible.
### ⚙️ How it works:
- Listens to pull requests events:
- If PR is opened => starts an ephemeral Space
- If PR is updated => updates the Space
- If PR is closed => deleted the Space
- Checks PR author:
- If trusted author => ephemeral Space is configured with variables, secrets and hardware.
- If not a trusted author => ephemeral Space is started without configuration.
- Space owners are trusted by default. Additional "trusted authors" can be configuration manually.
### ⚠️ Before merging:
1. Check that the configuration is correct. By default the Space is configured to run ephemeral Spaces on a (free) CPU instance without any secrets.
2. You must set `HF_TOKEN` as a secret in your Space settings. Token must have 'write' permission. You can create a new one in your [User settings](https://huggingface.co/settings/token).
---
This is an automated PR created with https://huggingface.co/spaces/Wauplin/gradio-space-ci.
For more details about Space CI, checkout [this page]](https://huggingface.co/spaces/Wauplin/gradio-space-ci/blob/main/README.md).
If you find any issues, please report here: https://huggingface.co/spaces/Wauplin/gradio-space-ci/discussions
Feel free to ignore this PR.
- README.md +8 -4
- app.py +6 -0
- requirements.txt +2 -1
@@ -1,15 +1,19 @@
|
|
1 |
---
|
2 |
title: Open LLM Leaderboard Results PR Opener
|
3 |
-
emoji: 🧐
|
4 |
-
colorFrom: green
|
5 |
-
colorTo: yellow
|
6 |
sdk: gradio
|
7 |
sdk_version: 4.14.0
|
8 |
app_file: app.py
|
|
|
|
|
|
|
9 |
pinned: false
|
10 |
hf_oauth: true
|
11 |
hf_oauth_scopes:
|
12 |
-
|
|
|
|
|
|
|
|
|
13 |
---
|
14 |
|
15 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
1 |
---
|
2 |
title: Open LLM Leaderboard Results PR Opener
|
|
|
|
|
|
|
3 |
sdk: gradio
|
4 |
sdk_version: 4.14.0
|
5 |
app_file: app.py
|
6 |
+
emoji: 🧐
|
7 |
+
colorFrom: green
|
8 |
+
colorTo: yellow
|
9 |
pinned: false
|
10 |
hf_oauth: true
|
11 |
hf_oauth_scopes:
|
12 |
+
- read-repos
|
13 |
+
space_ci:
|
14 |
+
trusted_authors: []
|
15 |
+
secrets: []
|
16 |
+
hardware: cpu-basic
|
17 |
---
|
18 |
|
19 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
@@ -12,6 +12,12 @@ import pandas as pd
|
|
12 |
from pytablewriter import MarkdownTableWriter
|
13 |
import gradio as gr
|
14 |
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
api = HfApi()
|
16 |
fs = HfFileSystem()
|
17 |
|
|
|
12 |
from pytablewriter import MarkdownTableWriter
|
13 |
import gradio as gr
|
14 |
|
15 |
+
from gradio_space_ci import enable_space_ci
|
16 |
+
|
17 |
+
enable_space_ci()
|
18 |
+
|
19 |
+
|
20 |
+
|
21 |
api = HfApi()
|
22 |
fs = HfFileSystem()
|
23 |
|
@@ -1,2 +1,3 @@
|
|
1 |
bs4
|
2 |
-
pytablewriter
|
|
|
|
1 |
bs4
|
2 |
+
pytablewriter
|
3 |
+
gradio-space-ci @ git+https://huggingface.co/spaces/Wauplin/gradio-space-ci@0.2.1
|