From cf9b0a4a690a3ea5eac70f9f55c5b86157369b69 Mon Sep 17 00:00:00 2001 From: Guillaume Dalle <22795598+gdalle@users.noreply.github.com> Date: Mon, 10 Jun 2024 16:01:14 +0200 Subject: [PATCH] Add Citation and TagBot --- .github/workflows/TagBot.yml | 33 +++++++++++++++++++++++++++++++++ CITATION.bib | 8 ++++++++ README.md | 1 + 3 files changed, 42 insertions(+) create mode 100644 .github/workflows/TagBot.yml create mode 100644 CITATION.bib diff --git a/.github/workflows/TagBot.yml b/.github/workflows/TagBot.yml new file mode 100644 index 0000000..ba6db9e --- /dev/null +++ b/.github/workflows/TagBot.yml @@ -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 }} \ No newline at end of file diff --git a/CITATION.bib b/CITATION.bib new file mode 100644 index 0000000..3245a4f --- /dev/null +++ b/CITATION.bib @@ -0,0 +1,8 @@ +@misc{dalle2022learning, + title={Learning with Combinatorial Optimization Layers: a Probabilistic Approach}, + author={Guillaume Dalle and Léo Baty and Louis Bouvier and Axel Parmentier}, + year={2022}, + eprint={2207.13513}, + archivePrefix={arXiv}, + primaryClass={stat.ML} +} \ No newline at end of file diff --git a/README.md b/README.md index 99cf86d..77b0e6a 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ # DifferentiableExpectations.jl +[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://JuliaDecisionFocusedLearning.github.io/DifferentiableExpectations.jl/stable/) [![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://JuliaDecisionFocusedLearning.github.io/DifferentiableExpectations.jl/dev/) [![Build Status](https://github.com/JuliaDecisionFocusedLearning/DifferentiableExpectations.jl/actions/workflows/Test.yml/badge.svg?branch=main)](https://github.com/JuliaDecisionFocusedLearning/DifferentiableExpectations.jl/actions/workflows/Test.yml?query=branch%3Amain) [![Coverage](https://codecov.io/gh/JuliaDecisionFocusedLearning/DifferentiableExpectations.jl/branch/main/graph/badge.svg)](https://app.codecov.io/gh/JuliaDecisionFocusedLearning/DifferentiableExpectations.jl)