diff --git a/.github/workflows/behave_pull_request.yml b/.github/workflows/behave_pull_request.yml index 1a0fca2ca9..3b4066496d 100644 --- a/.github/workflows/behave_pull_request.yml +++ b/.github/workflows/behave_pull_request.yml @@ -219,8 +219,7 @@ jobs: - name: Deploy uses: peaceiris/actions-gh-pages@v4 with: - github_token: ${{ secrets.GITHUB_TOKEN }} + personal_token: ${{ secrets.GH_PAGES_TOKEN }} publish_branch: gh-pages - publish_dir: allure-history-partial + publish_dir: ./allure-history-partial keep_files: true - personal_token: ${{ secrets.GH_PAGES_TOKEN }} diff --git a/.github/workflows/behave_schedule.yml b/.github/workflows/behave_schedule.yml index 3b115c35d4..2da323c8b7 100644 --- a/.github/workflows/behave_schedule.yml +++ b/.github/workflows/behave_schedule.yml @@ -204,8 +204,7 @@ jobs: - name: Deploy uses: peaceiris/actions-gh-pages@v4 with: - github_token: ${{ secrets.GITHUB_TOKEN }} + personal_token: ${{ secrets.GH_PAGES_TOKEN }} publish_branch: gh-pages - publish_dir: allure-history-full + publish_dir: ./allure-history-full keep_files: true - personal_token: ${{ secrets.GH_PAGES_TOKEN }} diff --git a/uk_bin_collection/uk_bin_collection/councils/CheshireEastCouncil.py b/uk_bin_collection/uk_bin_collection/councils/CheshireEastCouncil.py index 9119e7bea6..dc8225010b 100644 --- a/uk_bin_collection/uk_bin_collection/councils/CheshireEastCouncil.py +++ b/uk_bin_collection/uk_bin_collection/councils/CheshireEastCouncil.py @@ -10,7 +10,6 @@ class CouncilClass(AbstractGetBinDataClass): """ A class to fetch and parse bin collection data for Cheshire East Council. """ - def parse_data(self, page: Any, **kwargs: Any) -> Dict[str, Any]: soup = BeautifulSoup(page.text, features="html.parser")