mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-24 21:43:07 +00:00
[6] Add SAG to awards nav (#2110)
This commit is contained in:
parent
1ff0f8492f
commit
d6fb0d053d
6 changed files with 10 additions and 2 deletions
1
.github/.wordlist.txt
vendored
1
.github/.wordlist.txt
vendored
|
@ -127,6 +127,7 @@ integrations
|
||||||
ints
|
ints
|
||||||
io
|
io
|
||||||
iteratively
|
iteratively
|
||||||
|
jd
|
||||||
Jinja
|
Jinja
|
||||||
jkirkcaldy
|
jkirkcaldy
|
||||||
JohnFawkes
|
JohnFawkes
|
||||||
|
|
5
.github/workflows/validate-pull.yml
vendored
5
.github/workflows/validate-pull.yml
vendored
|
@ -25,9 +25,12 @@ jobs:
|
||||||
|
|
||||||
- name: Checkout Repo
|
- name: Checkout Repo
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
ref: ${{ github.event.pull_request.head.ref }}
|
||||||
|
repository: ${{ github.event.pull_request.head.repo.full_name }}
|
||||||
|
|
||||||
- name: Run Spellcheck
|
- name: Run Spellcheck
|
||||||
uses: rojopolis/spellcheck-github-actions@0.37.0
|
uses: rojopolis/spellcheck-github-actions@0.38.0
|
||||||
|
|
||||||
docker-build-pull:
|
docker-build-pull:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
|
@ -12,5 +12,6 @@ Added [`letterboxd_user_lists`](https://kometa.wiki/en/latest/files/dynamic_type
|
||||||
|
|
||||||
# Bug Fixes
|
# Bug Fixes
|
||||||
Fixed multiple anime `int()` Errors
|
Fixed multiple anime `int()` Errors
|
||||||
|
Fixed #2100 verify_ssl wasn't working when downloading images
|
||||||
|
|
||||||
Various other Minor Fixes
|
Various other Minor Fixes
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
2.0.2-build5
|
2.0.2-build6
|
||||||
|
|
|
@ -217,6 +217,7 @@ nav:
|
||||||
- National Film Registry: defaults/award/nfr.md
|
- National Film Registry: defaults/award/nfr.md
|
||||||
- People's Choice Awards: defaults/award/pca.md
|
- People's Choice Awards: defaults/award/pca.md
|
||||||
- Razzie Awards: defaults/award/razzie.md
|
- Razzie Awards: defaults/award/razzie.md
|
||||||
|
- Screen Actors Guild Awards: defaults/award/sag.md
|
||||||
- Sundance Film Festival Awards: defaults/award/sundance.md
|
- Sundance Film Festival Awards: defaults/award/sundance.md
|
||||||
- Toronto International Film Festival: defaults/award/tiff.md
|
- Toronto International Film Festival: defaults/award/tiff.md
|
||||||
- Venice Film Festival Awards: defaults/award/venice.md
|
- Venice Film Festival Awards: defaults/award/venice.md
|
||||||
|
|
|
@ -29,6 +29,8 @@ class GitHub:
|
||||||
return self.requests.get_yaml(url, headers=self.headers, params=params)
|
return self.requests.get_yaml(url, headers=self.headers, params=params)
|
||||||
response = self.requests.get(url, headers=self.headers, params=params)
|
response = self.requests.get(url, headers=self.headers, params=params)
|
||||||
if response.status_code >= 400:
|
if response.status_code >= 400:
|
||||||
|
logger.stacktrace()
|
||||||
|
logger.error(response.reason)
|
||||||
raise Failed(f"Git Error: {err_msg}")
|
raise Failed(f"Git Error: {err_msg}")
|
||||||
try:
|
try:
|
||||||
return response.json()
|
return response.json()
|
||||||
|
|
Loading…
Reference in a new issue