Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 }}