[6] Add SAG to awards nav (#2110)

This commit is contained in:
YozoraXCII 2024-06-14 15:17:24 +01:00 committed by GitHub Action
parent 1ff0f8492f
commit d6fb0d053d
6 changed files with 10 additions and 2 deletions

View file

@ -127,6 +127,7 @@ integrations
ints
io
iteratively
jd
Jinja
jkirkcaldy
JohnFawkes

View file

@ -25,9 +25,12 @@ jobs:
- name: Checkout Repo
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
- name: Run Spellcheck
uses: rojopolis/spellcheck-github-actions@0.37.0
uses: rojopolis/spellcheck-github-actions@0.38.0
docker-build-pull:
runs-on: ubuntu-latest

View file

@ -12,5 +12,6 @@ Added [`letterboxd_user_lists`](https://kometa.wiki/en/latest/files/dynamic_type
# Bug Fixes
Fixed multiple anime `int()` Errors
Fixed #2100 verify_ssl wasn't working when downloading images
Various other Minor Fixes

View file

@ -1 +1 @@
2.0.2-build5
2.0.2-build6

View file

@ -217,6 +217,7 @@ nav:
- National Film Registry: defaults/award/nfr.md
- People's Choice Awards: defaults/award/pca.md
- Razzie Awards: defaults/award/razzie.md
- Screen Actors Guild Awards: defaults/award/sag.md
- Sundance Film Festival Awards: defaults/award/sundance.md
- Toronto International Film Festival: defaults/award/tiff.md
- Venice Film Festival Awards: defaults/award/venice.md

View file

@ -29,6 +29,8 @@ class GitHub:
return self.requests.get_yaml(url, headers=self.headers, params=params)
response = self.requests.get(url, headers=self.headers, params=params)
if response.status_code >= 400:
logger.stacktrace()
logger.error(response.reason)
raise Failed(f"Git Error: {err_msg}")
try:
return response.json()