Skip to content

Commit

Permalink
update register
Browse files Browse the repository at this point in the history
  • Loading branch information
qyli committed Feb 24, 2024
1 parent a52471a commit 455e0ac
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 2 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/TagBot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: TagBot
on:
issue_comment:
types:
- created
workflow_dispatch:
inputs:
lookback:
default: 3
permissions:
actions: read
checks: read
contents: write
deployments: read
issues: read
discussions: read
packages: read
pages: read
pull-requests: read
repository-projects: read
security-events: read
statuses: read
jobs:
TagBot:
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
runs-on: ubuntu-latest
steps:
- uses: JuliaRegistries/TagBot@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
# Edit the following line to reflect the actual name of the GitHub Secret containing your private key
ssh: ${{ secrets.DOCUMENTER_KEY }}
# ssh: ${{ secrets.NAME_OF_MY_SSH_PRIVATE_KEY_SECRET }}
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
*.DS_Store
*.jld2
docs/build
*/ManiFest.toml
*/ManiFest.toml
Manifest.toml
6 changes: 5 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,8 @@ TimerOutputs = "a759f4b9-e2f1-59dc-863e-4aeb61b1ea8f"
[compat]
julia = "~1.9"
KrylovKit = "~0.6"
TensorKit = "0.12.1 - 0.12.2"
TensorKit = "0.12.1 - 0.12.2"
AbstractTrees = "0.4.5"
TimerOutputs = "0.5.23"
Reexport = "1.2.2"
SerializedElementArrays = "0.1.0"

0 comments on commit 455e0ac

Please sign in to comment.