From 7dd09ea7de7ddfba345d2bdda8111cbb3873c899 Mon Sep 17 00:00:00 2001 From: cortadocodes Date: Mon, 17 Jan 2022 14:29:45 +0000 Subject: [PATCH] OPS: Skip pull request description update if skip indicator in body --- .github/workflows/update-pull-request.yml | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/update-pull-request.yml b/.github/workflows/update-pull-request.yml index c7b3885..351c3ba 100644 --- a/.github/workflows/update-pull-request.yml +++ b/.github/workflows/update-pull-request.yml @@ -14,6 +14,7 @@ on: jobs: description: + if: "!contains(github.event.pull_request.body, '')" runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 diff --git a/setup.py b/setup.py index 145f62e..2fc16e7 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ setup( name="twined", - version="0.1.1", + version="0.1.2", py_modules=[], install_requires=["jsonschema ~= 3.2.0", "python-dotenv"], url="https://www.github.com/octue/twined",