From 944492ac4c9b88fd1f372c64a697663d73c1307a Mon Sep 17 00:00:00 2001 From: Soutaro Matsumoto Date: Thu, 17 Jul 2025 09:47:32 +0900 Subject: [PATCH 1/4] Fix syntax error --- .github/workflows/bundle-update.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/bundle-update.yml b/.github/workflows/bundle-update.yml index 240c866864..10d6868152 100644 --- a/.github/workflows/bundle-update.yml +++ b/.github/workflows/bundle-update.yml @@ -50,7 +50,7 @@ jobs: - name: Create Pull Request if: env.has_update == 'true' env: - GH_TOKEN: ${{ ${{ secrets.DEPENDABOT_MERGE_GH_TOKEN }} }} + GH_TOKEN: ${{ secrets.DEPENDABOT_MERGE_GH_TOKEN }} run: | gh pr create \ --title 'bundle update (`/Gemfile`)' \ From 80accf11eeaa93520ca352f1d1e9fd936518fa34 Mon Sep 17 00:00:00 2001 From: Soutaro Matsumoto Date: Thu, 17 Jul 2025 09:51:04 +0900 Subject: [PATCH 2/4] Bundle update steep/Gemfile too --- .github/workflows/bundle-update.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/bundle-update.yml b/.github/workflows/bundle-update.yml index 10d6868152..b46e800922 100644 --- a/.github/workflows/bundle-update.yml +++ b/.github/workflows/bundle-update.yml @@ -33,7 +33,8 @@ jobs: - name: Run bundle update run: | bundle lock --update - git add Gemfile.lock + bundle lock --update --gemfile=steep/Gemfile + git add Gemfile.lock steep/Gemfile.lock if git diff --cached --exit-code; then echo "No changes to commit, exiting." @@ -53,7 +54,7 @@ jobs: GH_TOKEN: ${{ secrets.DEPENDABOT_MERGE_GH_TOKEN }} run: | gh pr create \ - --title 'bundle update (`/Gemfile`)' \ - --body "Automated bundle update" \ + --title 'bundle update' \ + --body "Automated weekly bundle update" \ --head "$(git rev-parse --abbrev-ref HEAD)" \ --base "${{ github.event.repository.default_branch }}" From 26cbd22e5f857e252b833775db6b53e238bfcb23 Mon Sep 17 00:00:00 2001 From: Soutaro Matsumoto Date: Thu, 17 Jul 2025 09:53:57 +0900 Subject: [PATCH 3/4] Fix title --- .github/workflows/bundle-update.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/bundle-update.yml b/.github/workflows/bundle-update.yml index b46e800922..ed8fb692a3 100644 --- a/.github/workflows/bundle-update.yml +++ b/.github/workflows/bundle-update.yml @@ -54,7 +54,7 @@ jobs: GH_TOKEN: ${{ secrets.DEPENDABOT_MERGE_GH_TOKEN }} run: | gh pr create \ - --title 'bundle update' \ + --title "bundle update ($(date +'%Y%m%d'))" \ --body "Automated weekly bundle update" \ --head "$(git rev-parse --abbrev-ref HEAD)" \ --base "${{ github.event.repository.default_branch }}" From 978fba88cbfdf8d4b3e70165a15416b2e8d1a401 Mon Sep 17 00:00:00 2001 From: Soutaro Matsumoto Date: Thu, 17 Jul 2025 09:55:26 +0900 Subject: [PATCH 4/4] Fix title (2) --- .github/workflows/bundle-update.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/bundle-update.yml b/.github/workflows/bundle-update.yml index ed8fb692a3..ec78ce19f8 100644 --- a/.github/workflows/bundle-update.yml +++ b/.github/workflows/bundle-update.yml @@ -54,7 +54,7 @@ jobs: GH_TOKEN: ${{ secrets.DEPENDABOT_MERGE_GH_TOKEN }} run: | gh pr create \ - --title "bundle update ($(date +'%Y%m%d'))" \ + --title "bundle update ($(date +'%Y-%m-%d'))" \ --body "Automated weekly bundle update" \ --head "$(git rev-parse --abbrev-ref HEAD)" \ --base "${{ github.event.repository.default_branch }}"