We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cdcbcb9 commit 824362cCopy full SHA for 824362c
.github/workflows/bundle-update.yml
@@ -33,7 +33,8 @@ jobs:
33
- name: Run bundle update
34
run: |
35
bundle lock --update
36
- git add Gemfile.lock
+ bundle lock --update --gemfile=steep/Gemfile
37
+ git add Gemfile.lock steep/Gemfile.lock
38
39
if git diff --cached --exit-code; then
40
echo "No changes to commit, exiting."
@@ -53,7 +54,7 @@ jobs:
53
54
GH_TOKEN: ${{ secrets.DEPENDABOT_MERGE_GH_TOKEN }}
55
56
gh pr create \
- --title 'bundle update (`/Gemfile`)' \
57
- --body "Automated bundle update" \
+ --title 'bundle update' \
58
+ --body "Automated weekly bundle update" \
59
--head "$(git rev-parse --abbrev-ref HEAD)" \
60
--base "${{ github.event.repository.default_branch }}"
0 commit comments