diff --git a/.github/workflows/TagBot.yaml b/.github/workflows/TagBot.yaml new file mode 100644 index 0000000..90dc100 --- /dev/null +++ b/.github/workflows/TagBot.yaml @@ -0,0 +1,33 @@ +name: TagBot +on: + issue_comment: + types: + - created + workflow_dispatch: + inputs: + lookback: + default: 3 +permissions: + actions: read + checks: read + contents: write + deployments: read + issues: read + discussions: read + packages: read + pages: read + pull-requests: read + repository-projects: read + security-events: read + statuses: read +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 }} + # Edit the following line to reflect the actual name of the GitHub Secret containing your private key + ssh: ${{ secrets.DOCUMENTER_KEY }} + # ssh: ${{ secrets.NAME_OF_MY_SSH_PRIVATE_KEY_SECRET }} diff --git a/Project.toml b/Project.toml index 42e15f7..3a87eee 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "ParticleDA" uuid = "61cd1fb4-f4c4-4bc8-80c6-ea5639a6ca2e" authors = ["Mosè Giordano and Tuomas Koskela and Dan Giles and Matt Graham"] -version = "0.1.0" +version = "1.0.0" [deps] HDF5 = "f67ccb44-e63f-5c2f-98bd-6dc0ccc4ba2f" @@ -17,6 +17,8 @@ YAML = "ddb6d928-2868-570f-bddf-ab3f9cf99eb6" [compat] HDF5 = "0.14, 0.15, 0.16" MPI = "0.20.8" +PDMats = "0.11.17" +StructArrays = "0.6.15" TimerOutputs = "0.5" YAML = "0.4" julia = "1.7"