Wauplin HF staff commited on
Commit
e50abbc
1 Parent(s): c2f7418
Files changed (2) hide show
  1. app.py +1 -1
  2. ui.py +3 -5
app.py CHANGED
@@ -212,7 +212,7 @@ def _get_ci_space_id(space_id: str, pr_num: int) -> str:
212
  NOTIFICATION_TEMPLATE_CREATE = """\
213
  Following the creation of this PR, an ephemeral Space [{ci_space_id}](https://huggingface.co/spaces/{ci_space_id}) has been launched. Any changes pushed to this PR will be synced with the test Space.
214
 
215
- If your Space needs configuration (secrets or upgraded hardware), you must duplicate this ephemeral Space to your account and configure the settings by yourself. You are responsible of making sure that the changes introduced in the PR are not harmful (leak secret, run malicious scripts,...)
216
 
217
  (This is an automated message. To disable me, please unregister using [this form](https://huggingface.co/spaces/spaces-ci-bot/webhook))
218
  """
 
212
  NOTIFICATION_TEMPLATE_CREATE = """\
213
  Following the creation of this PR, an ephemeral Space [{ci_space_id}](https://huggingface.co/spaces/{ci_space_id}) has been launched. Any changes pushed to this PR will be synced with the test Space.
214
 
215
+ If your Space requires configuration (secrets or upgraded hardware), you must duplicate the ephemeral Space to your account and configure the settings by yourself. You are responsible of making sure that the changes introduced in the PR are not harmful (leak secrets, run malicious scripts,...).
216
 
217
  (This is an automated message. To disable me, please unregister using [this form](https://huggingface.co/spaces/spaces-ci-bot/webhook))
218
  """
ui.py CHANGED
@@ -5,14 +5,12 @@ from database import is_space_existing, is_space_registered, update_status
5
 
6
  TITLE = "⚙️ Spaces CI Bot ⚙️"
7
  DESCRIPTION = """
8
- This app lets you register your Space with the Spaces CI Bot.
9
 
10
- Once your repository is watched, any PR opened on your Space will be deployed as a temporary Space to test the changes
11
- on your demo. Any changes pushed to the PRs will trigger a re-deployment. Once the PR is merged, the temporary Space is
12
  deleted.
13
 
14
- If your app needs some secrets to run or a specific hardware, you will need to duplicate the temporary Space and to
15
- setup your environment.
16
  """
17
 
18
 
 
5
 
6
  TITLE = "⚙️ Spaces CI Bot ⚙️"
7
  DESCRIPTION = """
8
+ Welcome! This app lets you register a Space on the CI Bot's watchlist.
9
 
10
+ Once your Space is on the list, any PR opened will be deployed as an ephemeral Space. Any changes pushed to the PRs will trigger a re-deployment. Once the PR is merged, the ephemeral Space is
 
11
  deleted.
12
 
13
+ If your Space requires configuration (secrets or upgraded hardware), you must duplicate the ephemeral Space to your account and configure the settings by yourself. You are responsible of making sure that the changes introduced in the PR are not harmful (leak secrets, run malicious scripts,...).
 
14
  """
15
 
16