Skip to content

Commit bac4a78

Browse files
authored
Update TagBot workflow (#55)
* Update TagBot workflow * Require Julia 1.6
1 parent 38c54d2 commit bac4a78

File tree

3 files changed

+14
-6
lines changed

3 files changed

+14
-6
lines changed

.github/workflows/TagBot.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
11
name: TagBot
22
on:
3-
schedule:
4-
- cron: 0 * * * *
3+
issue_comment:
4+
types:
5+
- created
6+
workflow_dispatch:
7+
inputs:
8+
lookback:
9+
default: 3
10+
permissions:
11+
contents: write
512
jobs:
613
TagBot:
14+
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
715
runs-on: ubuntu-latest
816
steps:
917
- uses: JuliaRegistries/TagBot@v1
1018
with:
11-
token: ${{ secrets.GITHUB_TOKEN }}
19+
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ${{ matrix.os }}
1212
strategy:
1313
matrix:
14-
julia-version: ['1.5', '1.6', '1.7', '~1.8.0-0']
14+
julia-version: ['1.6', '1.7', '~1.8.0-0']
1515
os: [ubuntu-latest, macOS-latest, windows-latest]
1616
steps:
1717
- uses: actions/checkout@v2

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "HybridArrays"
22
uuid = "1baab800-613f-4b0a-84e4-9cd3431bfbb9"
33
authors = ["Mateusz Baran <mateuszbaran89@gmail.com>"]
4-
version = "0.4.11"
4+
version = "0.4.12"
55

66
[deps]
77
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
@@ -12,7 +12,7 @@ StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
1212
EllipsisNotation = "1.1"
1313
Requires = "1"
1414
StaticArrays = "1.0.1"
15-
julia = "1.5"
15+
julia = "1.6"
1616

1717
[extras]
1818
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"

0 commit comments

Comments
 (0)