From: Daniele Varrazzo Date: Mon, 15 Nov 2021 00:00:45 +0000 (+0100) Subject: Disable running CI tests on tag X-Git-Tag: 3.0.5~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=89ab4bcd64df5f569c654e85e5d8b7c73ed9ca90;p=thirdparty%2Fpsycopg.git Disable running CI tests on tag At least I hope. According to GitHub Docs [1]: > If you define only `tags` or only `branches`, the workflow won't run for > events affecting the undefined Git ref. [1]: https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions#onpushpull_requestbranchestags --- diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 54c49b8f1..99b4f7f98 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -2,6 +2,10 @@ name: Lint on: push: + # This should disable running the workflow on tags, according to the + # on.. GitHub Actions docs. + branches: + - "*" pull_request: jobs: diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 55b164559..e7f42ecc0 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -2,6 +2,10 @@ name: Tests on: push: + # This should disable running the workflow on tags, according to the + # on.. GitHub Actions docs. + branches: + - "*" pull_request: jobs: