From d6fb0d053d7827d3dbe03c2ab652900cd7348079 Mon Sep 17 00:00:00 2001 From: YozoraXCII <96386153+YozoraXCII@users.noreply.github.com> Date: Fri, 14 Jun 2024 15:17:24 +0100 Subject: [PATCH] [6] Add SAG to awards nav (#2110) --- .github/.wordlist.txt | 1 + .github/workflows/validate-pull.yml | 5 ++++- CHANGELOG | 1 + VERSION | 2 +- mkdocs.yml | 1 + modules/github.py | 2 ++ 6 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/.wordlist.txt b/.github/.wordlist.txt index 3a51508f..e80a3442 100644 --- a/.github/.wordlist.txt +++ b/.github/.wordlist.txt @@ -127,6 +127,7 @@ integrations ints io iteratively +jd Jinja jkirkcaldy JohnFawkes diff --git a/.github/workflows/validate-pull.yml b/.github/workflows/validate-pull.yml index 51fd4dff..a44d419c 100644 --- a/.github/workflows/validate-pull.yml +++ b/.github/workflows/validate-pull.yml @@ -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 diff --git a/CHANGELOG b/CHANGELOG index aa19b4e9..86fee01a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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 \ No newline at end of file diff --git a/VERSION b/VERSION index 9e30b555..11253a68 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.0.2-build5 +2.0.2-build6 diff --git a/mkdocs.yml b/mkdocs.yml index 7f1713d6..b2e4106c 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -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 diff --git a/modules/github.py b/modules/github.py index e4ae3a69..768b0fc0 100644 --- a/modules/github.py +++ b/modules/github.py @@ -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()