Skip to content

Commit b5475bc

Browse files
committed
Add compat bounds & tagbot
1 parent dbbcfbd commit b5475bc

File tree

3 files changed

+40
-1
lines changed

3 files changed

+40
-1
lines changed

.github/TagBot.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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+
ssh: ${{ secrets.SSH_KEY }}

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.9.0-beta4"
44
manifest_format = "2.0"
5-
project_hash = "c0341f017b920d1411d8480213842b1e68135a9f"
5+
project_hash = "583fac64862af63e9ae796c9862148152cc67277"
66

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

Project.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,11 @@ ImageIO = "82e4d734-157c-48bb-816b-45c225c6df19"
1111
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
1212
ModernGL = "66fc600b-dfda-50eb-8b99-91cfa97b1301"
1313
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
14+
15+
[compat]
16+
CImGui = "1.82.0"
17+
ModernGL = "1.1.6"
18+
StaticArrays = "1.5.16"
19+
FileIO = "1.16.0"
20+
ImageCore = "0.9.4"
21+
ImageIO = "0.6.6"

0 commit comments

Comments
 (0)