Skip to content

Commit e8b76b5

Browse files
authored
Merge pull request #331 from julia-vscode/julia-pkgbutler-updates
Julia Package Butler Updates
2 parents 9696af5 + 797c091 commit e8b76b5

File tree

3 files changed

+27
-2
lines changed

3 files changed

+27
-2
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,4 @@ jobs:
3737
name: codecov-umbrella
3838
fail_ci_if_error: false
3939
token: ${{ secrets.CODECOV_TOKEN }}
40+
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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@v2
13+
- uses: julia-actions/julia-codeformat@releases/v1
14+
- name: Create Pull Request
15+
uses: peter-evans/create-pull-request@v3
16+
with:
17+
token: ${{ secrets.GITHUB_TOKEN }}
18+
commit-message: Format files using DocumentFormat
19+
title: '[AUTO] Format files using DocumentFormat'
20+
body: '[DocumentFormat.jl](https://github.com/julia-vscode/DocumentFormat.jl) would suggest these formatting changes'
21+
labels: no changelog

.github/workflows/jlpkgbutler-tagbot-workflow.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
name: TagBot
22
on:
3-
schedule:
4-
- cron: 0 * * * *
3+
issue_comment:
4+
types:
5+
- created
6+
workflow_dispatch:
57
jobs:
68
TagBot:
9+
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
710
runs-on: ubuntu-latest
811
steps:
912
- uses: JuliaRegistries/TagBot@v1

0 commit comments

Comments
 (0)