From 23bd82b8228fbd72882cc5407b1117de2a0f9fe1 Mon Sep 17 00:00:00 2001 From: Pedro Maciel Xavier Date: Fri, 19 Aug 2022 19:21:39 -0300 Subject: [PATCH] Add registry requirements [no ci] --- .github/workflows/TagBot.yml | 15 +++++++++++++++ Project.toml | 5 +++++ 2 files changed, 20 insertions(+) create mode 100644 .github/workflows/TagBot.yml diff --git a/.github/workflows/TagBot.yml b/.github/workflows/TagBot.yml new file mode 100644 index 00000000..623860f7 --- /dev/null +++ b/.github/workflows/TagBot.yml @@ -0,0 +1,15 @@ +name: TagBot +on: + issue_comment: + types: + - created + workflow_dispatch: +jobs: + TagBot: + if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot' + runs-on: ubuntu-latest + steps: + - uses: JuliaRegistries/TagBot@v1 + with: + token: ${{ secrets.GITHUB_TOKEN }} + ssh: ${{ secrets.DOCUMENTER_KEY }} \ No newline at end of file diff --git a/Project.toml b/Project.toml index 022537f6..50298de3 100644 --- a/Project.toml +++ b/Project.toml @@ -7,3 +7,8 @@ version = "0.1.0" JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6" JSONSchema = "7d188eb4-7ad8-530c-ae41-71a32a6d4692" Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7" + +[compat] +JSON = "0.21.3" +JSONSchema = "1.0" +julia = "1.6"