Skip to content

Commit

Permalink
Merge pull request #64 from queryverse/julia-pkgbutler-updates
Browse files Browse the repository at this point in the history
Julia Package Butler Updates
  • Loading branch information
davidanthoff committed Dec 7, 2019
2 parents 647fdf6 + bafdf02 commit 1ac9031
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/jlpkgbutler-ci-pr-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,9 @@ jobs:
- uses: julia-actions/julia-uploadcodecov@latest
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
formatlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1.0.0
- uses: julia-actions/setup-julia@latest
- uses: julia-actions/julia-codeformat-lint@releases/v1
23 changes: 23 additions & 0 deletions .github/workflows/jlpkgbutler-codeformat-pr-workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Code Formatting

on:
push:
branches:
- master

jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: julia-actions/setup-julia@latest
- uses: julia-actions/julia-codeformat@releases/v1
- name: Create Pull Request
uses: peter-evans/create-pull-request@v1.8.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: Format files using DocumentFormat
title: '[AUTO] Format files using DocumentFormat'
body: '[DocumentFormat.jl](https://github.com/julia-vscode/DocumentFormat.jl) would suggest these formatting changes'
labels: no changelog
branch-suffix: none
12 changes: 12 additions & 0 deletions .github/workflows/jlpkgbutler-tagbot-workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: TagBot
on:
schedule:
- cron: 0 * * * *
jobs:
TagBot:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: JuliaRegistries/TagBot@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 1ac9031

Please sign in to comment.