Skip to content
This repository has been archived by the owner on Jun 14, 2023. It is now read-only.

Commit

Permalink
workflows: merge CompatHelper and TagBot
Browse files Browse the repository at this point in the history
  • Loading branch information
maxmouchet committed Oct 10, 2020
1 parent b07df8d commit 8ad8254
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 20 deletions.
12 changes: 0 additions & 12 deletions .github/workflows/TagBot.yml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,24 +1,27 @@
name: CompatHelper
name: Maintenance

on:
schedule:
- cron: '00 * * * *'

jobs:
CompatHelper:
runs-on: ${{ matrix.os }}
strategy:
matrix:
julia-version: [1.2.0]
julia-arch: [x86]
os: [ubuntu-latest]
runs-on: ubuntu-latest
steps:
- uses: julia-actions/setup-julia@latest
with:
version: ${{ matrix.julia-version }}
version: '1.5'
- name: Pkg.add("CompatHelper")
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
- name: CompatHelper.main()
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: julia -e 'using CompatHelper; CompatHelper.main()'

TagBot:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: JuliaRegistries/TagBot@v1
with:
token: ${{ secrets.DOCUMENTER_TOKEN }}

0 comments on commit 8ad8254

Please sign in to comment.