From be66c76c2d3baa8299f227e2404e948fa958ce32 Mon Sep 17 00:00:00 2001 From: Sorin Sbarnea Date: Thu, 28 Sep 2023 17:32:51 +0100 Subject: [PATCH] Allow retagging on release (#3782) --- .github/workflows/release.yml | 4 ++++ .github/workflows/tox.yml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2c5a209d54..2d3ee0e88d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,6 +11,10 @@ jobs: # https://github.com/marketplace/actions/actions-tagger actions-tagger: runs-on: windows-latest + permissions: + # Give the default GITHUB_TOKEN write permission. + # https://github.blog/changelog/2023-02-02-github-actions-updating-the-default-github_token-permissions-to-read-only/ + contents: write steps: - uses: Actions-R-Us/actions-tagger@latest env: diff --git a/.github/workflows/tox.yml b/.github/workflows/tox.yml index b25408dc0f..77810bdf0a 100644 --- a/.github/workflows/tox.yml +++ b/.github/workflows/tox.yml @@ -70,7 +70,7 @@ jobs: env: # Number of expected test passes, safety measure for accidental skip of # tests. Update value if you add/remove tests. - PYTEST_REQPASS: 828 + PYTEST_REQPASS: 829 steps: - uses: actions/checkout@v4 with: