Skip to content

Commit

Permalink
Update more links to repo
Browse files Browse the repository at this point in the history
coveralls still seems to be monitoring the old URL so I left that one alone.
  • Loading branch information
wjt committed Jan 10, 2024
1 parent 232c5be commit 85c3543
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Flatpak External Data Checker

![Tests](https://github.com/flathub/flatpak-external-data-checker/workflows/Tests/badge.svg)
![Tests](https://github.com/flathub-infra/flatpak-external-data-checker/workflows/Tests/badge.svg)
[![Coverage Status](https://coveralls.io/repos/github/flathub/flatpak-external-data-checker/badge.svg)](https://coveralls.io/github/flathub/flatpak-external-data-checker)
[![CodeFactor](https://www.codefactor.io/repository/github/flathub/flatpak-external-data-checker/badge)](https://www.codefactor.io/repository/github/flathub/flatpak-external-data-checker)
[![CodeFactor](https://www.codefactor.io/repository/github/flathub-infra/flatpak-external-data-checker/badge)](https://www.codefactor.io/repository/github/flathub-infra/flatpak-external-data-checker)

This is a tool for checking for outdated or broken links of external
data in Flatpak manifests.
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
with:
ref: ${{ matrix.branch }}

- uses: docker://ghcr.io/flathub/flatpak-external-data-checker:latest
- uses: docker://ghcr.io/flathub-infra/flatpak-external-data-checker:latest
env:
GIT_AUTHOR_NAME: Flatpak External Data Checker
GIT_COMMITTER_NAME: Flatpak External Data Checker
Expand Down
4 changes: 2 additions & 2 deletions data/org.flathub.flatpak-external-data-checker.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<id>org.flathub.flatpak-external-data-checker</id>
<name>Flatpak External Data Checker</name>
<summary>A tool for checking if the external data used in Flatpak manifests is still up to date</summary>
<url type="homepage">https://github.com/flathub/flatpak-external-data-checker</url>
<url type="bugtracker">https://github.com/flathub/flatpak-external-data-checker/issues</url>
<url type="homepage">https://github.com/flathub-infra/flatpak-external-data-checker</url>
<url type="bugtracker">https://github.com/flathub-infra/flatpak-external-data-checker/issues</url>
<description>
<p>This is a tool for checking for outdated or broken links of external data in Flatpak manifests.</p>
</description>
Expand Down
2 changes: 1 addition & 1 deletion run-in-container.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ podman run --rm --privileged \
-e GIT_COMMITTER_NAME="$GIT_USER_NAME" \
-e GIT_AUTHOR_EMAIL="$GIT_USER_EMAIL" \
-e GIT_COMMITTER_EMAIL="$GIT_USER_EMAIL" \
-it ghcr.io/flathub/flatpak-external-data-checker \
-it ghcr.io/flathub-infra/flatpak-external-data-checker \
$*
2 changes: 1 addition & 1 deletion src/lib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# With the default urllib User-Agent, dl.discordapp.net returns 403
USER_AGENT = (
"flatpak-external-data-checker/1.0 "
"(+https://github.com/flathub/flatpak-external-data-checker)"
"(+https://github.com/flathub-infra/flatpak-external-data-checker)"
)

HTTP_CLIENT_HEADERS = {"User-Agent": USER_AGENT}
Expand Down
4 changes: 2 additions & 2 deletions src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,8 +228,8 @@ def commit_changes(changes: t.List[str]) -> CommittedChanges:

DISCLAIMER = (
"🤖 This pull request was automatically generated by "
"[flathub/flatpak-external-data-checker]"
"(https://github.com/flathub/flatpak-external-data-checker). "
"[flathub-infra/flatpak-external-data-checker]"
"(https://github.com/flathub-infra/flatpak-external-data-checker). "
"Please [open an issue]"
"(https://github.com/flathub-infra/flatpak-external-data-checker/issues/new) "
"if you have any questions or complaints. 🤖"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ def test_parse_valid(self):
"Wed, 20 Jan 2021 15:25:15 +0000",
"Wed, 20 Jan 2021 18:25:15 +0300",
"Wed, 20 Jan 2021 07:25:15 -0800",
# https://github.com/flathub/flatpak-external-data-checker/issues/370
# https://github.com/flathub-infra/flatpak-external-data-checker/issues/370
"Wed, 20 Jan 2021 23:25:15 +0800",
"Wed, 20 Jan 2021 23:25:15 Asia/Shanghai",
]:
Expand Down

0 comments on commit 85c3543

Please sign in to comment.