From 80de0e8502255f166cfc8ab0f061030dc28c9b74 Mon Sep 17 00:00:00 2001 From: Romeo Valentin Date: Tue, 16 Jul 2024 22:24:14 +0200 Subject: [PATCH] Put again default TagBot file. I'm having some permission problems otherwise... --- .github/workflows/TagBot.yml | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/.github/workflows/TagBot.yml b/.github/workflows/TagBot.yml index 41c1727..0cd3114 100644 --- a/.github/workflows/TagBot.yml +++ b/.github/workflows/TagBot.yml @@ -4,15 +4,9 @@ on: 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 }} + inputs: + lookback: + default: "3" permissions: actions: read checks: read @@ -26,3 +20,12 @@ permissions: 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 }} + ssh: ${{ secrets.DOCUMENTER_KEY }}