From 58debbf3d1b4a3e1a7bb5bd8b72e68a256f43fb5 Mon Sep 17 00:00:00 2001 From: Richard North Date: Wed, 9 Mar 2022 10:13:18 +0000 Subject: [PATCH] Upgrade release drafter to v5.19.0 * includes new `collapse-after` mode to automatically collapse long lists of dependency updates * includes a fix for unmerged PRs sometimes appearing (https://github.com/release-drafter/release-drafter/pull/1015) * renamed GHA workflow file for DX reasons: the previous filename was being identified for JSON schema validation as a release drafter config file rather than as a GHA workflow. With the changed filename, IDE validation and autocompletion are now actually helpful. --- .github/release-drafter.yml | 1 + .../workflows/{release-drafter.yml => run-release-drafter.yml} | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) rename .github/workflows/{release-drafter.yml => run-release-drafter.yml} (76%) diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index 4da341055c2..aed3d84f304 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -23,3 +23,4 @@ categories: - type/test-improvement - title: 📦 Dependency updates label: dependencies + collapse-after: 3 diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/run-release-drafter.yml similarity index 76% rename from .github/workflows/release-drafter.yml rename to .github/workflows/run-release-drafter.yml index 05485ac57fa..839fb43df4d 100644 --- a/.github/workflows/release-drafter.yml +++ b/.github/workflows/run-release-drafter.yml @@ -12,6 +12,6 @@ jobs: if: github.repository == 'testcontainers/testcontainers-java' runs-on: ubuntu-latest steps: - - uses: release-drafter/release-drafter@2f7ebf8ab5ef7f9835ee4b0b1eebaa2a14ca1669 # v5.15.0 + - uses: release-drafter/release-drafter@e9ee02fbac03d922bac6212003695e8358dd88b0 # v5.19.0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}