From 8597e465beff1ab7f0025c00aba033148daa485f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Miclu=C8=9Ba-C=C3=A2mpeanu?= <31181429+SebastianM-C@users.noreply.github.com> Date: Tue, 7 Apr 2020 17:05:06 +0300 Subject: [PATCH] Create compathelper.yml --- .github/workflows/compathelper.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/compathelper.yml diff --git a/.github/workflows/compathelper.yml b/.github/workflows/compathelper.yml new file mode 100644 index 00000000000..1a5fc802f35 --- /dev/null +++ b/.github/workflows/compathelper.yml @@ -0,0 +1,22 @@ +name: Run CompatHelper + +on: + schedule: + - cron: '00 * * * *' + issues: + types: [opened, reopened] + +jobs: + compathelper: + name: "Run CompatHelper.jl" + runs-on: ubuntu-latest + steps: + - uses: julia-actions/setup-julia@latest + with: + version: 1.4 + - 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()'