From e21a59791460e6878d3b0344a527998d9ef7293f Mon Sep 17 00:00:00 2001 From: Ben Arthur Date: Mon, 20 Jan 2020 12:54:40 -0500 Subject: [PATCH] add TagBot and CompatHelper --- github/workflows/CompatHelper.yml | 26 ++++++++++++++++++++++++++ github/workflows/TagBot.yml | 12 ++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 github/workflows/CompatHelper.yml create mode 100644 github/workflows/TagBot.yml diff --git a/github/workflows/CompatHelper.yml b/github/workflows/CompatHelper.yml new file mode 100644 index 0000000..7bd9b4d --- /dev/null +++ b/github/workflows/CompatHelper.yml @@ -0,0 +1,26 @@ +name: CompatHelper + +on: + schedule: + - cron: '0 0 * * 0' + issues: + types: [opened, reopened] + +jobs: + build: + runs-on: ${{ matrix.os }} + strategy: + matrix: + julia-version: [1.2.0] + julia-arch: [x86] + os: [ubuntu-latest] + steps: + - uses: julia-actions/setup-julia@latest + with: + version: ${{ matrix.julia-version }} + - 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()' diff --git a/github/workflows/TagBot.yml b/github/workflows/TagBot.yml new file mode 100644 index 0000000..50b215e --- /dev/null +++ b/github/workflows/TagBot.yml @@ -0,0 +1,12 @@ +name: TagBot +on: + schedule: + - cron: 0 0 * * 0 +jobs: + TagBot: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: JuliaRegistries/TagBot@v1 + with: + token: ${{ secrets.GITHUB_TOKEN }}