https://github.com/javierbarbero/DataEnvelopmentAnalysis.jl
Raw File
Tip revision: 7caeaf2c5a4476b7ff367ae2647a78a4d507b327 authored by Javier Barbero on 28 August 2024, 06:52:42 UTC
Bump version to 0.9.1
Tip revision: 7caeaf2
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