Skip to content

Commit 83ad43a

Browse files
committed
refactor: Update links from migrating repo to skills org
1 parent 36278a9 commit 83ad43a

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Action output. As such it can easily be referenced in subsequent steps.
3838
steps:
3939
- name: Build comment using template
4040
id: build-comment
41-
uses: chriswblake/action-text-variables@v1
41+
uses: skills/action-text-variables@v1
4242
with:
4343
template-text: 'Hello {{ login }}, nice to meet you!'
4444
template-vars: '{"login": "${{ github.actor }}" }'
@@ -53,7 +53,7 @@ steps:
5353
steps:
5454
- name: Build comment using template
5555
id: build-comment
56-
uses: chriswblake/action-text-variables@v1
56+
uses: skills/action-text-variables@v1
5757
with:
5858
template-text: 'Hello {{ login }}, nice to meet you!'
5959
template-vars: |
@@ -72,7 +72,7 @@ steps:
7272

7373
- name: Build comment using template
7474
id: build-comment
75-
uses: chriswblake/action-text-variables@v1
75+
uses: skills/action-text-variables@v1
7676
with:
7777
template-file: my-files/my-template.md
7878
template-vars: '{ "login": "${{ github.actor }}" }'
@@ -89,17 +89,17 @@ steps:
8989
- name: Get templates from another repository
9090
uses: actions/checkout@v4
9191
with:
92-
repository: chriswblake/feedback-templates
93-
path: feedback-templates
92+
repository: skills/response-templates
93+
path: response-templates
9494

9595
- name: Show available templates
96-
run: ls -R feedback-templates
96+
run: ls -R response-templates
9797

9898
- name: Build comment using template
9999
id: build-comment
100-
uses: chriswblake/action-text-variables@v1
100+
uses: skills/action-text-variables@v1
101101
with:
102-
template-file: feedback-templates/skill-step-feedback/lesson-finished.md
102+
template-file: response-templates/step-feedback/lesson-finished.md
103103
template-vars: '{
104104
"login": "${{ github.actor }}",
105105
"repo_full_name": "${{ github.repository }}"

examples/direct-text.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
- name: Build comment using template
1515
id: build-comment
16-
uses: chriswblake/action-text-variables@v1
16+
uses: skills/action-text-variables@v1
1717
with:
1818
template-text: 'Hello {{ login }}, nice to meet you! Have you met my friend {{ friend }}?'
1919
template-vars: '{
@@ -34,7 +34,7 @@ jobs:
3434

3535
- name: Build comment using template
3636
id: build-comment
37-
uses: chriswblake/action-text-variables@v1
37+
uses: skills/action-text-variables@v1
3838
with:
3939
template-text: 'Hello {{ login }}, nice to meet you! Have you met my friend {{ friend }}?'
4040
template-vars: |

examples/template-from-other-repo.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,17 @@ jobs:
1414
- name: Get templates from another repository
1515
uses: actions/checkout@v4
1616
with:
17-
repository: chriswblake/feedback-templates
18-
path: feedback-templates
17+
repository: skills/response-templates
18+
path: response-templates
1919

2020
- name: Show available templates
21-
run: ls -R feedback-templates
21+
run: ls -R response-templates
2222

2323
- name: Build comment using template
2424
id: build-comment
25-
uses: chriswblake/action-text-variables@v1
25+
uses: skills/action-text-variables@v1
2626
with:
27-
template-file: feedback-templates/skill-step-feedback/lesson-finished.md
27+
template-file: response-templates/step-feedback/lesson-finished.md
2828
template-vars: '{
2929
"login": "${{ github.actor }}",
3030
"repo_full_name": "${{ github.repository }}"

examples/template-from-same-repo.yml

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

1717
- name: Build comment using template
1818
id: build-comment
19-
uses: chriswblake/action-text-variables@v1
19+
uses: skills/action-text-variables@v1
2020
with:
2121
template-file: examples/hello.md
2222
template-vars: '{"login": "${{ github.actor }}" }'

0 commit comments

Comments
 (0)