Skip to content

Commit dae9f3c

Browse files
authored
Merge pull request #101 from queryverse/julia-pkgbutler-updates
Julia Package Butler Updates
2 parents 53487fe + e76c122 commit dae9f3c

File tree

3 files changed

+41
-0
lines changed

3 files changed

+41
-0
lines changed

.github/workflows/jlpkgbutler-ci-pr-workflow.yml

+6
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,9 @@ jobs:
3131
- uses: julia-actions/julia-uploadcodecov@latest
3232
env:
3333
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
34+
formatlint:
35+
runs-on: ubuntu-latest
36+
steps:
37+
- uses: actions/[email protected]
38+
- uses: julia-actions/setup-julia@latest
39+
- uses: julia-actions/julia-codeformat-lint@releases/v1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Code Formatting
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
jobs:
9+
format:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v1
13+
- uses: julia-actions/setup-julia@latest
14+
- uses: julia-actions/julia-codeformat@releases/v1
15+
- name: Create Pull Request
16+
uses: peter-evans/[email protected]
17+
with:
18+
token: ${{ secrets.GITHUB_TOKEN }}
19+
commit-message: Format files using DocumentFormat
20+
title: '[AUTO] Format files using DocumentFormat'
21+
body: '[DocumentFormat.jl](https://github.com/julia-vscode/DocumentFormat.jl) would suggest these formatting changes'
22+
labels: no changelog
23+
branch-suffix: none
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: TagBot
2+
on:
3+
schedule:
4+
- cron: 0 * * * *
5+
jobs:
6+
TagBot:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v1
10+
- uses: JuliaRegistries/TagBot@v1
11+
with:
12+
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)