Skip to content

Commit 3e4d083

Browse files
authored
Merge pull request #16 from im-open/ITHD-239416
Fix Repo Name So Workflow Will Run
2 parents e2694d0 + af4d80c commit 3e4d083

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

.github/workflows/build-and-review-pr.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -67,16 +67,16 @@ jobs:
6767
env:
6868
ORG: 'im-open'
6969
THIS_REPO: 'setup-deploy-keys'
70-
INTERNAL_REPO_TO_CLONE: 'im-open/internal-repo-for-testing'
71-
INTERNAL_REPO_TO_CLONE_DIR: 'internal-repo-for-testing'
70+
INTERNAL_REPO_TO_CLONE: 'im-open/internal-repo-for-testing-purple-actions'
71+
INTERNAL_REPO_TO_CLONE_DIR: 'internal-repo-for-testing-purple-actions'
7272

7373
# The private key which will be used to clone the internal & empty deploy-keys-testing repo.
7474
# The repo does not contain anything sensitive, it is just marked as internal so the key can be tested here.
7575
# This SSH key was generated as a readonly key (so no push abilities).
7676
INTERNAL_REPO_TO_CLONE_KEY: ${{ secrets.SSH_KEY_TESTING_REPO }}
7777
SSH_DEPLOY_KEY_INFO: |
7878
[
79-
{ "orgAndRepo": "im-open/internal-repo-for-testing", "envName" : "INTERNAL_REPO_TO_CLONE_KEY" }
79+
{ "orgAndRepo": "im-open/internal-repo-for-testing-purple-actions", "envName" : "INTERNAL_REPO_TO_CLONE_KEY" }
8080
]
8181
8282
steps:
@@ -200,9 +200,9 @@ jobs:
200200
201201
if [ $count -ne 3 ]
202202
then
203-
echo -e "\nExpected 3 insteadOf entries in .gitconfig but found $count"
203+
echo -e "\nExpected 3 insteadOf entries in .gitconfig but found $count"
204204
exit 1
205-
else
205+
else
206206
echo -e "\nThere were 3 insteadOf entries in the .gitconfig as expected."
207207
fi
208208
@@ -239,7 +239,7 @@ jobs:
239239
id: unparseable
240240
continue-on-error: true # This is needed because we expect the step to fail. We need it to "pass" in order for the test job to succeed.
241241
with:
242-
deploy-key-info: '[ orgAndRepo=im-open/internal-repo-for-testing, envName=INTERNAL_REPO_TO_CLONE_KEY ]'
242+
deploy-key-info: '[ orgAndRepo=im-open/internal-repo-for-testing-purple-actions, envName=INTERNAL_REPO_TO_CLONE_KEY ]'
243243

244244
- name: Then the outcome should be failure
245245
if: always()
@@ -310,7 +310,7 @@ jobs:
310310
with:
311311
deploy-key-info: |
312312
[
313-
{ "orgAndRepo": "im-open/internal-repo-for-testing", "envName" : "" }
313+
{ "orgAndRepo": "im-open/internal-repo-for-testing-purple-actions", "envName" : "" }
314314
]
315315
316316
- name: Then the outcome should be failure
@@ -335,7 +335,7 @@ jobs:
335335
with:
336336
deploy-key-info: |
337337
[
338-
{ "orgAndRepo": "im-open/internal-repo-for-testing", "envName" : "UNPOPULATED_ENV_VARIABLE" }
338+
{ "orgAndRepo": "im-open/internal-repo-for-testing-purple-actions", "envName" : "UNPOPULATED_ENV_VARIABLE" }
339339
]
340340
341341
- name: Then the outcome should be failure

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
node_modules/
2-
/.vscode/launch.json
2+
/.vscode/launch.json
3+
.DS_Store

0 commit comments

Comments
 (0)