Browse Source

♻ Update GitHub actions (#1746)

* 🐛 Fix Gitter notification, use development gitter room until next release

* 🔥 Remove trigger docs preview step from build-docs workflow

as it requires a more privileged token, so it's now triggered by the preview docs watcher

* 🔊 Dump context when building to allow debugging how to refactor the Gitter bot
pull/1755/head
Sebastián Ramírez 5 years ago
committed by GitHub
parent
commit
6ab2841dbb
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      .github/workflows/build-docs.yml
  2. 6
      .github/workflows/publish.yml
  3. 6
      scripts/gitter_releases_bot.py
  4. 21
      scripts/trigger-docs-preview.sh

6
.github/workflows/build-docs.yml

@ -24,12 +24,6 @@ jobs:
with:
name: docs-zip-${{ github.sha }}
path: ./docs.zip
- name: Trigger Docs Preview
env:
PR: "${{ github.event.number }}"
NAME: "docs-zip-${{ github.sha }}"
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
run: bash ./scripts/trigger-docs-preview.sh
- name: Deploy to Netlify
uses: nwtgck/[email protected]
with:

6
.github/workflows/publish.yml

@ -23,7 +23,13 @@ jobs:
FLIT_USERNAME: ${{ secrets.FLIT_USERNAME }}
FLIT_PASSWORD: ${{ secrets.FLIT_PASSWORD }}
run: bash scripts/publish.sh
- name: Dump GitHub context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"
- name: Notify
env:
GITTER_TOKEN: ${{ secrets.GITTER_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TAG: ${{ github.ref }}
run: bash scripts/notify.sh

6
scripts/gitter_releases_bot.py

@ -3,14 +3,14 @@ import os
import requests
room_id = "5c9c9540d73408ce4fbc1403" # FastAPI
# room_id = "5cc46398d73408ce4fbed233" # Gitter development
# room_id = "5c9c9540d73408ce4fbc1403" # FastAPI
room_id = "5cc46398d73408ce4fbed233" # Gitter development
gitter_token = os.getenv("GITTER_TOKEN")
assert gitter_token
github_token = os.getenv("GITHUB_TOKEN")
assert github_token
tag_name = os.getenv("TRAVIS_TAG")
tag_name = os.getenv("TAG")
assert tag_name

21
scripts/trigger-docs-preview.sh

@ -1,21 +0,0 @@
#! /usr/bin/env bash
set -x
set -e
PR=${PR}
if [ -z "$PR" ]; then
echo "Not a PR build, skip trigger docs preview"
exit 0
fi
NAME=${NAME:?Variable not set}
GITHUB_TOKEN=${GITHUB_TOKEN:?Variable not set}
curl -v \
-X POST \
-H "Authorization: token ${GITHUB_TOKEN}" \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/repos/tiangolo/fastapi/actions/workflows/preview-docs.yml/dispatches \
-d '{"ref":"master", "inputs": {"pr": "'"${PR}"'", "name": "'"${NAME}"'"}}'
Loading…
Cancel
Save