From: Dylan Young Date: Mon, 8 Jun 2026 00:31:30 +0000 (-0300) Subject: ci: add explicit tags-ignore to workflows X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fb6fee5a5084be704a42a950ef2543ba770c1d59;p=thirdparty%2Fpsycopg.git ci: add explicit tags-ignore to workflows --- diff --git a/.github/workflows/3rd-party-tests.yml b/.github/workflows/3rd-party-tests.yml index d40121a1e..ca14010a9 100644 --- a/.github/workflows/3rd-party-tests.yml +++ b/.github/workflows/3rd-party-tests.yml @@ -11,6 +11,8 @@ on: paths-ignore: - "docs/*" - "tools/*" + tags-ignore: + - "**" workflow_dispatch: concurrency: diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index b3c08a8b9..b49cc59fc 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -5,6 +5,8 @@ on: branches: # This should match the DOC3_BRANCH value in the psycopg-website Makefile - master + tags-ignore: + - "**" concurrency: group: ${{ github.workflow }}-${{ github.ref_name }} diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index d511ac87a..9edce1955 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -6,6 +6,8 @@ on: # on.. GitHub Actions docs. branches: - "**" + tags-ignore: + - "**" pull_request: schedule: - cron: '18 6 * * *' diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f193d3cec..838d0af3a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -6,6 +6,8 @@ on: # on.. GitHub Actions docs. branches: - "**" + tags-ignore: + - "**" paths-ignore: - README.rst - "docs/*"