Skip to content

Commit 99a82e7

Browse files
committed
Migrate workflow callers to ITensorActions v2 + filename-derived names
1 parent 6d7883d commit 99a82e7

12 files changed

Lines changed: 34 additions & 31 deletions
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
name: "Check Compat Bounds"
1+
name: "CheckCompatBounds"
22
on:
33
pull_request: ~
44
permissions:
55
contents: "read"
66
jobs:
77
check-compat-bounds:
8-
name: "Check Compat Bounds"
9-
uses: "ITensor/ITensorActions/.github/workflows/CheckCompatBounds.yml@v1"
8+
name: "CheckCompatBounds"
9+
uses: "ITensor/ITensorActions/.github/workflows/CheckCompatBounds.yml@v2"
1010
with:
1111
localregistry: "https://github.com/ITensor/ITensorRegistry.git"

.github/workflows/CompatHelper.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ permissions:
77
contents: "write"
88
pull-requests: "write"
99
jobs:
10-
compat-helper:
10+
compathelper:
1111
name: "CompatHelper"
12-
uses: "ITensor/ITensorActions/.github/workflows/CompatHelper.yml@v1"
12+
uses: "ITensor/ITensorActions/.github/workflows/CompatHelper.yml@v2"
1313
with:
1414
localregistry: "https://github.com/ITensor/ITensorRegistry.git"
1515
secrets: "inherit"

.github/workflows/Documentation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ concurrency:
1313
permissions:
1414
contents: "write"
1515
jobs:
16-
build-and-deploy-docs:
16+
documentation:
1717
name: "Documentation"
18-
uses: "ITensor/ITensorActions/.github/workflows/Documentation.yml@v1"
18+
uses: "ITensor/ITensorActions/.github/workflows/Documentation.yml@v2"
1919
with:
2020
localregistry: "https://github.com/ITensor/ITensorRegistry.git"
2121
secrets:

.github/workflows/FormatCheck.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "Format Check"
1+
name: "FormatCheck"
22
on:
33
pull_request:
44
types:
@@ -10,5 +10,5 @@ permissions:
1010
contents: "read"
1111
jobs:
1212
format-check:
13-
name: "Format Check"
14-
uses: "ITensor/ITensorActions/.github/workflows/FormatCheck.yml@v1"
13+
name: "FormatCheck"
14+
uses: "ITensor/ITensorActions/.github/workflows/FormatCheck.yml@v2"
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
name: "Format Check Comment"
1+
name: "FormatCheckComment"
22
on:
33
workflow_run:
44
workflows:
5-
- "Format Check"
5+
- "FormatCheck"
66
types:
77
- "completed"
88
permissions:
99
pull-requests: "write"
1010
actions: "read"
1111
jobs:
12-
comment:
13-
name: "Format Check Comment"
12+
format-check-comment:
13+
name: "FormatCheckComment"
1414
if: "github.event.workflow_run.event == 'pull_request'"
15-
uses: "ITensor/ITensorActions/.github/workflows/FormatCheckComment.yml@v1"
15+
uses: "ITensor/ITensorActions/.github/workflows/FormatCheckComment.yml@v2"
1616
secrets: "inherit"

.github/workflows/FormatPullRequest.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "Format Pull Request"
1+
name: "FormatPullRequest"
22
on:
33
schedule:
44
- cron: "0 0 * * *"
@@ -11,6 +11,6 @@ permissions:
1111
pull-requests: "write"
1212
jobs:
1313
format-pull-request:
14-
name: "Format Pull Request"
15-
uses: "ITensor/ITensorActions/.github/workflows/FormatPullRequest.yml@v1"
14+
name: "FormatPullRequest"
15+
uses: "ITensor/ITensorActions/.github/workflows/FormatPullRequest.yml@v2"
1616
secrets: "inherit"

.github/workflows/IntegrationTest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ permissions:
1717
jobs:
1818
integration-test:
1919
name: "IntegrationTest"
20-
uses: "ITensor/ITensorActions/.github/workflows/IntegrationTest.yml@v1"
20+
uses: "ITensor/ITensorActions/.github/workflows/IntegrationTest.yml@v2"
2121
secrets: "inherit"
2222
with:
2323
localregistry: "https://github.com/ITensor/ITensorRegistry.git"
Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "Integration Test Request"
1+
name: "IntegrationTestRequest"
22
on:
33
issue_comment:
44
types:
@@ -9,11 +9,12 @@ permissions:
99
checks: "write"
1010
pull-requests: "write"
1111
jobs:
12-
integrationrequest:
12+
integration-test-request:
13+
name: "IntegrationTestRequest"
1314
if: |
1415
github.event.issue.pull_request &&
1516
contains(fromJSON('["OWNER", "COLLABORATOR", "MEMBER"]'), github.event.comment.author_association)
16-
uses: "ITensor/ITensorActions/.github/workflows/IntegrationTestRequest.yml@v1"
17+
uses: "ITensor/ITensorActions/.github/workflows/IntegrationTestRequest.yml@v2"
1718
secrets: "inherit"
1819
with:
1920
localregistry: "https://github.com/ITensor/ITensorRegistry.git"

.github/workflows/Registrator.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "Register Package"
1+
name: "Registrator"
22
on:
33
workflow_dispatch: ~
44
push:
@@ -15,8 +15,9 @@ permissions:
1515
pull-requests: "write"
1616
issues: "write"
1717
jobs:
18-
Register:
19-
uses: "ITensor/ITensorActions/.github/workflows/Registrator.yml@v1"
18+
registrator:
19+
name: "Registrator"
20+
uses: "ITensor/ITensorActions/.github/workflows/Registrator.yml@v2"
2021
with:
2122
localregistry: "ITensor/ITensorRegistry"
2223
secrets: "inherit"

.github/workflows/TagBot.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ permissions:
1010
contents: "write"
1111
issues: "read"
1212
jobs:
13-
TagBot:
13+
tagbot:
14+
name: "TagBot"
1415
if: "github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'"
15-
uses: "ITensor/ITensorActions/.github/workflows/TagBot.yml@v1"
16+
uses: "ITensor/ITensorActions/.github/workflows/TagBot.yml@v2"
1617
secrets: "inherit"

0 commit comments

Comments
 (0)