BeyondCodeBootcamp / BeyondCodeBootcamp/bliss-template
More Automation
- Langage dominant
- Shell
- Étoiles
- 8
- Forks
- 1
- Métriques de merge des PR
- Aucune PR mergée en 30 j
Description
Can we turn on GitHub Pages automatically? **No**
- https://docs.github.com/en/rest/reference/repos#create-a-github-pages-site
```bash
curl -s -X POST https://api.github.com/repos/"${GH_OWNER}/${GIT_REPO}"/pages \
${my_basic_header} \
-H "Accept: application/vnd.github.switcheroo-preview+json" \
-d '{"source":{"branch":"gh-pages","path":""}}'
```
Can we update the About > Homepage? **No**
- https://docs.github.com/en/rest/reference/repos#update-a-repository
```bash
curl -s -X PATCH https://api.github.com/repos/"${GH_OWNER}/${GIT_REPO}" \
"${my_basic_header}" \
-H "Accept: application/vnd.github.v3+json" \
-H "Content-Type: application/json" \
-d '{ "homepage": "https://'"${GH_OWNER}"'.github.io/'"${GIT_REPO}"'" }'
```
Guide de contribution
Aucun guide de contribution indexé pour ce dépôt
Piste de recherche
Commencez par les extraits Bash et les endpoints GitHub REST API associés pour créer un site Pages et mettre à jour les métadonnées du dépôt. Le travail est terminé lorsque l’automatisation active correctement Pages depuis la branche gh-pages et définit la page d’accueil du dépôt pour ce projet.
Rédigé par le modèle d'indexation à partir du texte de l'issue.
Évaluation
- Stack technique
- github, shell
- Domaine
- devops
- Type d'issue
- Fonctionnalité
- Difficulté
- 3/5
- Temps estimé
- 1-2 jours
- Activité
- À l'abandon
- Clarté
- Plutôt claire
- Accessibilité débutants
- 35/100