From 105ebf06d741a9e7c7b3b4395d31c621b46c9ff9 Mon Sep 17 00:00:00 2001 From: Chengyu HAN Date: Sat, 3 May 2025 21:58:21 +0800 Subject: [PATCH] ci: workaround for tagbot permissions --- .github/workflows/TagBot.yml | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/.github/workflows/TagBot.yml b/.github/workflows/TagBot.yml index 2bacdb8..985a7be 100644 --- a/.github/workflows/TagBot.yml +++ b/.github/workflows/TagBot.yml @@ -7,19 +7,20 @@ on: 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 +# Workaround for https://github.com/JuliaRegistries/TagBot/issues/388 +# 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'