not-lain commited on
Commit
49f6343
β€’
1 Parent(s): 8fe0888

Enable Space CI

Browse files

This 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.

Files changed (3) hide show
  1. README.md +7 -3
  2. app.py +6 -0
  3. requirements.txt +2 -0
README.md CHANGED
@@ -1,12 +1,16 @@
1
  ---
2
  title: Test
3
- emoji: πŸ†
4
- colorFrom: yellow
5
- colorTo: blue
6
  sdk: gradio
7
  sdk_version: 4.26.0
8
  app_file: app.py
 
 
 
9
  pinned: false
 
 
 
 
10
  ---
11
 
12
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
  title: Test
 
 
 
3
  sdk: gradio
4
  sdk_version: 4.26.0
5
  app_file: app.py
6
+ emoji: πŸ†
7
+ colorFrom: yellow
8
+ colorTo: blue
9
  pinned: false
10
+ space_ci:
11
+ trusted_authors: []
12
+ secrets: []
13
+ hardware: cpu-basic
14
  ---
15
 
16
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
app.py CHANGED
@@ -1,5 +1,11 @@
1
  import gradio as gr
2
 
 
 
 
 
 
 
3
  def talk(text):
4
  return text
5
 
 
1
  import gradio as gr
2
 
3
+ from gradio_space_ci import enable_space_ci
4
+
5
+ enable_space_ci()
6
+
7
+
8
+
9
  def talk(text):
10
  return text
11
 
requirements.txt CHANGED
@@ -0,0 +1,2 @@
 
 
 
1
+
2
+ gradio-space-ci @ git+https://huggingface.co/spaces/Wauplin/gradio-space-ci@0.2.2