diff --git a/.github/workflows/bundle-update.yml b/.github/workflows/bundle-update.yml index 240c866864..ec78ce19f8 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." @@ -50,10 +51,10 @@ 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`)' \ - --body "Automated 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 }}"