From b7041ad25adf395dae66ee0db2cd11ff667b6290 Mon Sep 17 00:00:00 2001 From: David Robertson Date: Mon, 4 Apr 2022 13:25:16 +0100 Subject: [PATCH 1/2] Allow the newsfile job to be skipped Looks like @richvdh used this in https://github.com/matrix-org/synapse/pull/12161. Let's do the same in sydent. --- .github/workflows/pipeline.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 90aaf4ab..b26f6dc4 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -57,3 +57,7 @@ jobs: - uses: matrix-org/done-action@v2 with: needs: ${{ toJSON(needs) }} + # The newsfile lint may be skipped on non PR builds + skippable: + lint-newsfile + From d9c970cd46bb3b54ac5edb3ea87b91462ef83ea6 Mon Sep 17 00:00:00 2001 From: David Robertson Date: Mon, 4 Apr 2022 13:26:50 +0100 Subject: [PATCH 2/2] changelog --- changelog.d/514.misc | 1 + 1 file changed, 1 insertion(+) create mode 100644 changelog.d/514.misc diff --git a/changelog.d/514.misc b/changelog.d/514.misc new file mode 100644 index 00000000..7df1e9e2 --- /dev/null +++ b/changelog.d/514.misc @@ -0,0 +1 @@ +Allow the newsfile job to be skipped.