Skip to content

Commit a44d6c6

Browse files
committed
chore: rename go-task/action to go-task/setup-task
1 parent de80ecf commit a44d6c6

17 files changed

+40
-41
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ body:
2929
- type: input
3030
id: project-version
3131
attributes:
32-
label: "'go-task/action' version"
32+
label: "'go-task/setup-task' version"
3333
description: |
34-
Which version of `go-task/action` are you using?
34+
Which version of `go-task/setup-task` are you using?
3535
_This should be the most recent version available._
3636
validations:
3737
required: true
@@ -48,7 +48,7 @@ body:
4848
label: Issue checklist
4949
description: Please double-check that you have done each of the following things before submitting the issue.
5050
options:
51-
- label: I searched for previous reports in [the issue tracker](https://github.com/go-task/action/issues?q=)
51+
- label: I searched for previous reports in [the issue tracker](https://github.com/go-task/setup-task/issues?q=)
5252
required: true
5353
- label: I verified the problem still occurs when using the latest version
5454
required: true

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
blank_issues_enabled: false
55
contact_links:
66
- name: Learn about using this project
7-
url: https://github.com/go-task/action#readme
7+
url: https://github.com/go-task/setup-task#readme
88
about: Detailed usage documentation is available here.
99
- name: Learn about GitHub Actions
1010
url: https://docs.github.com/actions

.github/ISSUE_TEMPLATE/feature-request.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@ body:
1717
attributes:
1818
label: Describe the current behavior
1919
description: |
20-
What is the current behavior of `go-task/action` in relation to your request?
20+
What is the current behavior of `go-task/setup-task` in relation to your request?
2121
How can we reproduce that behavior?
2222
validations:
2323
required: true
2424
- type: input
2525
id: project-version
2626
attributes:
27-
label: "'go-task/action' version"
27+
label: "'go-task/setup-task' version"
2828
description: |
29-
Which version of `go-task/action` are you using?
29+
Which version of `go-task/setup-task` are you using?
3030
_This should be the most recent version available._
3131
validations:
3232
required: true
@@ -43,7 +43,7 @@ body:
4343
label: Issue checklist
4444
description: Please double-check that you have done each of the following things before submitting the issue.
4545
options:
46-
- label: I searched for previous requests in [the issue tracker](https://github.com/go-task/action/issues?q=)
46+
- label: I searched for previous requests in [the issue tracker](https://github.com/go-task/setup-task/issues?q=)
4747
required: true
4848
- label: I verified the feature was still missing when using the latest version
4949
required: true

.github/renovate.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,5 @@
66
"schedule:weekly",
77
":semanticCommitTypeAll(chore)"
88
],
9-
"mode": "full",
10-
"forkProcessing": "enabled"
9+
"mode": "full"
1110
}

.github/workflows/check-action-metadata-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
node-version-file: package.json
3939

4040
- name: Install Task
41-
uses: go-task/action@main
41+
uses: go-task/setup-task@main
4242
with:
4343
repo-token: ${{ secrets.GITHUB_TOKEN }}
4444
version: 3.x

.github/workflows/check-markdown-task.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
uses: xt0rted/markdownlint-problem-matcher@v3
5353

5454
- name: Install Task
55-
uses: go-task/action@main
55+
uses: go-task/setup-task@main
5656
with:
5757
repo-token: ${{ secrets.GITHUB_TOKEN }}
5858
version: 3.x
@@ -73,7 +73,7 @@ jobs:
7373
node-version-file: package.json
7474

7575
- name: Install Task
76-
uses: go-task/action@main
76+
uses: go-task/setup-task@main
7777
with:
7878
repo-token: ${{ secrets.GITHUB_TOKEN }}
7979
version: 3.x

.github/workflows/check-npm-dependencies-task.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
node-version-file: package.json
8686

8787
- name: Install Task
88-
uses: go-task/action@main
88+
uses: go-task/setup-task@main
8989
with:
9090
repo-token: ${{ secrets.GITHUB_TOKEN }}
9191
version: 3.x
@@ -142,7 +142,7 @@ jobs:
142142
node-version-file: package.json
143143

144144
- name: Install Task
145-
uses: go-task/action@main
145+
uses: go-task/setup-task@main
146146
with:
147147
repo-token: ${{ secrets.GITHUB_TOKEN }}
148148
version: 3.x

.github/workflows/check-npm-task.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
node-version-file: package.json
4141

4242
- name: Install Task
43-
uses: go-task/action@main
43+
uses: go-task/setup-task@main
4444
with:
4545
repo-token: ${{ secrets.GITHUB_TOKEN }}
4646
version: 3.x
@@ -61,7 +61,7 @@ jobs:
6161
node-version-file: package.json
6262

6363
- name: Install Task
64-
uses: go-task/action@main
64+
uses: go-task/setup-task@main
6565
with:
6666
repo-token: ${{ secrets.GITHUB_TOKEN }}
6767
version: 3.x

.github/workflows/check-prettier-formatting-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ jobs:
214214
node-version-file: package.json
215215

216216
- name: Install Task
217-
uses: go-task/action@main
217+
uses: go-task/setup-task@main
218218
with:
219219
repo-token: ${{ secrets.GITHUB_TOKEN }}
220220
version: 3.x

.github/workflows/check-tsconfig-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
node-version-file: package.json
4747

4848
- name: Install Task
49-
uses: go-task/action@main
49+
uses: go-task/setup-task@main
5050
with:
5151
repo-token: ${{ secrets.GITHUB_TOKEN }}
5252
version: 3.x

0 commit comments

Comments
 (0)