Skip to content

Commit be95043

Browse files
Prepare registration
1 parent ef00500 commit be95043

File tree

3 files changed

+35
-3
lines changed

3 files changed

+35
-3
lines changed

.github/workflows/TagBot.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: TagBot
2+
on:
3+
issue_comment:
4+
types:
5+
- created
6+
workflow_dispatch:
7+
inputs:
8+
lookback:
9+
default: "3"
10+
permissions:
11+
actions: read
12+
checks: read
13+
contents: write
14+
deployments: read
15+
issues: read
16+
discussions: read
17+
packages: read
18+
pages: read
19+
pull-requests: read
20+
repository-projects: read
21+
security-events: read
22+
statuses: read
23+
jobs:
24+
TagBot:
25+
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
26+
runs-on: ubuntu-latest
27+
steps:
28+
- uses: JuliaRegistries/TagBot@v1
29+
with:
30+
token: ${{ secrets.GITHUB_TOKEN }}
31+
# Edit the following line to reflect the actual name of the GitHub Secret containing your private key
32+
ssh: ${{ secrets.DOCUMENTER_KEY }}
33+
# ssh: ${{ secrets.NAME_OF_MY_SSH_PRIVATE_KEY_SECRET }}

Manifest.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
julia_version = "1.11.0"
44
manifest_format = "2.0"
5-
project_hash = "63ffb3e692c7170c851778177aba551b0e41eb60"
5+
project_hash = "4769827eab50b48d16a28182639e41a51e9f0dfd"
66

77
[[deps.AbstractFFTs]]
88
deps = ["LinearAlgebra"]

Project.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ Downloads = "f43a241f-c20a-4ad4-852c-f6b1247861c6"
88
HybridArrays = "1baab800-613f-4b0a-84e4-9cd3431bfbb9"
99
JSON3 = "0f8b85d8-7281-11e9-16c2-39a750bddbf1"
1010
Meshes = "eacbb407-ea5a-433e-ab97-5258b1ca43fa"
11-
StaticArraysCore = "1e83bf80-4336-4d27-bf5d-d5a4f845583c"
1211
Unitful = "1986cc42-f94f-5a68-af5c-568840ba703d"
1312
ZipArchives = "49080126-0e18-4c2a-b176-c102e4b3760c"
1413

@@ -17,6 +16,6 @@ Downloads = "1.6.0"
1716
HybridArrays = "0.4.16"
1817
JSON3 = "1.14.1"
1918
Meshes = "0.52.1"
20-
StaticArraysCore = "1.4.3"
2119
Unitful = "1.21.0"
2220
ZipArchives = "2.4.0"
21+
julia = "^1.9"

0 commit comments

Comments
 (0)