https://github.com/javierbarbero/DataEnvelopmentAnalysis.jl
Raw File
Tip revision: c53bcdd77fe6b7488403b2a5d4e80e03e8a317de authored by Javier Barbero on 02 July 2024, 17:21:56 UTC
Bump version to 0.9.0
Tip revision: c53bcdd
TagBot.yml
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 }}
back to top