Skip to content

Commit f62af4e

Browse files
Fix incorrect product name
1 parent 2deddfd commit f62af4e

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/validate_secrets.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -79,22 +79,22 @@ jobs:
7979
set -o pipefail
8080
8181
# If a Match-Secrets repository does not exist, attempt to create one.
82-
if ! visibility=$(gh repo view ${{ github.repository_owner }}/Trio-Match-Secrets --json visibility | jq --raw-output '.visibility | ascii_downcase'); then
83-
echo "A '${{ github.repository_owner }}/Trio-Match-Secrets' repository could not be found using the GH_PAT secret. Attempting to create one..."
82+
if ! visibility=$(gh repo view ${{ github.repository_owner }}/Loop-Match-Secrets --json visibility | jq --raw-output '.visibility | ascii_downcase'); then
83+
echo "A '${{ github.repository_owner }}/Loop-Match-Secrets' repository could not be found using the GH_PAT secret. Attempting to create one..."
8484
8585
# Create a private Match-Secrets repository and verify that it exists and that it is private.
86-
if gh repo create ${{ github.repository_owner }}/Trio-Match-Secrets --private >/dev/null && [ "$(gh repo view ${{ github.repository_owner }}/Trio-Match-Secrets --json visibility | jq --raw-output '.visibility | ascii_downcase')" == "private" ]; then
87-
echo "Created a private '${{ github.repository_owner }}/Trio-Match-Secrets' repository."
86+
if gh repo create ${{ github.repository_owner }}/Loop-Match-Secrets --private >/dev/null && [ "$(gh repo view ${{ github.repository_owner }}/Loop-Match-Secrets --json visibility | jq --raw-output '.visibility | ascii_downcase')" == "private" ]; then
87+
echo "Created a private '${{ github.repository_owner }}/Loop-Match-Secrets' repository."
8888
else
8989
failed=true
90-
echo "::error::Unable to create a private '${{ github.repository_owner }}/Trio-Match-Secrets' repository. Create a private 'Match-Secrets' repository manually and try again. If a private 'Match-Secrets' repository already exists, verify that the token permissions of the GH_PAT are set correctly (or update them) at https://github.com/settings/tokens and try again."
90+
echo "::error::Unable to create a private '${{ github.repository_owner }}/Loop-Match-Secrets' repository. Create a private 'Match-Secrets' repository manually and try again. If a private 'Match-Secrets' repository already exists, verify that the token permissions of the GH_PAT are set correctly (or update them) at https://github.com/settings/tokens and try again."
9191
fi
9292
# Otherwise, if a Match-Secrets repository exists, but it is public, cause validation to fail.
9393
elif [[ "$visibility" == "public" ]]; then
9494
failed=true
95-
echo "::error::A '${{ github.repository_owner }}/Trio-Match-Secrets' repository was found, but it is public. Change the repository visibility to private (or delete it) and try again. If necessary, a private repository will be created for you."
95+
echo "::error::A '${{ github.repository_owner }}/Loop-Match-Secrets' repository was found, but it is public. Change the repository visibility to private (or delete it) and try again. If necessary, a private repository will be created for you."
9696
else
97-
echo "Found a private '${{ github.repository_owner }}/Trio-Match-Secrets' repository to use."
97+
echo "Found a private '${{ github.repository_owner }}/Loop-Match-Secrets' repository to use."
9898
fi
9999
100100
# Exit unsuccessfully if secret validation failed.

fastlane/Matchfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
GITHUB_REPOSITORY_OWNER ||= ENV["GITHUB_REPOSITORY_OWNER"]
33

4-
git_url("https://github.com/#{GITHUB_REPOSITORY_OWNER}/Trio-Match-Secrets.git")
4+
git_url("https://github.com/#{GITHUB_REPOSITORY_OWNER}/Loop-Match-Secrets.git")
55

66
storage_mode("git")
77

0 commit comments

Comments
 (0)