Skip to content

Commit e9a6208

Browse files
authored
Update skeleton (#47)
* update skeleton * Rename `Register` to `Registrator.yml`
1 parent b8ca93e commit e9a6208

File tree

6 files changed

+34
-19
lines changed

6 files changed

+34
-19
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: "Integration Test Request"
2+
3+
on:
4+
issue_comment:
5+
types: [created]
6+
7+
jobs:
8+
integrationrequest:
9+
if: |
10+
github.event.issue.pull_request &&
11+
contains(fromJSON('["OWNER", "COLLABORATOR", "MEMBER"]'), github.event.comment.author_association)
12+
uses: ITensor/ITensorActions/.github/workflows/IntegrationTestRequest.yml@main
13+
with:
14+
localregistry: https://github.com/ITensor/ITensorRegistry.git

.github/workflows/Register.yml

Lines changed: 0 additions & 16 deletions
This file was deleted.

.github/workflows/Registrator.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Register Package
2+
on:
3+
workflow_dispatch:
4+
pull_request:
5+
types:
6+
- closed
7+
paths:
8+
- 'Project.toml'
9+
branches:
10+
- 'master'
11+
- 'main'
12+
jobs:
13+
Register:
14+
if: github.event_name == 'workflow_dispatch' || github.event.pull_request.merged == true
15+
uses: "ITensor/ITensorActions/.github/workflows/Registrator.yml@main"
16+
with:
17+
localregistry: ITensor/ITensorRegistry

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2024 ITensor developers
3+
Copyright (c) 2025 ITensor developers
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

docs/make.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ makedocs(;
2222
edit_link="main",
2323
assets=String[],
2424
),
25-
pages=["Home" => "index.md", "Library" => "library.md"],
25+
pages=["Home" => "index.md", "Reference" => "reference.md"],
2626
)
2727

2828
deploydocs(;

docs/src/library.md renamed to docs/src/reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Library
1+
# Reference
22

33
```@autodocs
44
Modules = [BlockSparseArrays]

0 commit comments

Comments
 (0)