From d266505427a776b59bcf779a51c6e674f3ecf4d4 Mon Sep 17 00:00:00 2001 From: aaronskiba Date: Wed, 8 Oct 2025 09:30:29 -0600 Subject: [PATCH 1/2] Fix danger.yml workflow Resolves the following error: Invalid workflow file: .github/workflows/danger.yml#L1 (Line: 20, Col: 12): Unexpected value '' Commit 8b95198184178a48b9e9796b79169a2c09b23b9b should've removed this alongside the `ruby-version: ` code. --- .github/workflows/danger.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/danger.yml b/.github/workflows/danger.yml index 41a7bf0bd0..650ac6720e 100644 --- a/.github/workflows/danger.yml +++ b/.github/workflows/danger.yml @@ -17,7 +17,6 @@ jobs: # Install Ruby - using the version found in the Gemfile.lock - name: 'Install Ruby' uses: ruby/setup-ruby@v1 - with: - name: 'Bundle Install' run: | From bd996cfd36bc87c7bb6d9f350190b568150c4510 Mon Sep 17 00:00:00 2001 From: aaronskiba Date: Wed, 8 Oct 2025 09:37:18 -0600 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a4f4e52b1d..b5637083df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,9 @@ # Changelog ## v5.0.2 -- Bump Ruby to v3.1.4 and use `.ruby-version` in CI [#3566](https://github.com/DMPRoadmap/roadmap/pull/3566) +- Bump Ruby to v3.1.4 and use `.ruby-version` in CI + - [#3566](https://github.com/DMPRoadmap/roadmap/pull/3566) + - [#3573](https://github.com/DMPRoadmap/roadmap/pull/3573) - Enable session timeout after 90 minutes of inactivity [#3568](https://github.com/DMPRoadmap/roadmap/pull/3568) - Validate CSV Separator [#3569](https://github.com/DMPRoadmap/roadmap/pull/3569) - Fix rendering of `confirm_merge` partial [#3567](https://github.com/DMPRoadmap/roadmap/pull/3567)