Skip to content

Commit

Permalink
update commit author + PR body
Browse files Browse the repository at this point in the history
  • Loading branch information
aalu1418 committed Feb 9, 2024
1 parent a831f37 commit 57d9020
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/dependency-updates.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: DependencyBot
name: DependencyUpdater
on:
workflow_dispatch:
push:
Expand All @@ -8,14 +8,19 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3 # checkout branch that it is called from
- name: check for needed updates
run: make upgrade-e2e-solana-image
- name: check for solana image updates
id: solImage
run: |

Check failure on line 13 in .github/workflows/dependency-updates.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/dependency-updates.yml#L13

shellcheck reported issue in this script: SC2086:info:2:28: Double quote to prevent globbing and word splitting [shellcheck]
Raw output
.github/workflows/dependency-updates.yml:13:9: shellcheck reported issue in this script: SC2086:info:2:28: Double quote to prevent globbing and word splitting [shellcheck]
make upgrade-e2e-solana-image
echo "image=$SOL_IMAGE" >> $GITHUB_OUTPUT
- name: Create pull request
uses: peter-evans/create-pull-request@b1ddad2c994a25fbc81a28b3ec0e368bb2021c50 # v6.0.0
with:
title: "[automated] bump solana dependencies"
branch: bump/dependencies
branch-suffix: timestamp
author: "github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>"
reviewers: aalu1418
commit-message: "[automated] bump solana dependencies"
body: "Latest Solana mainnet release is [${{ steps.solImage.outputs.image }}](https://github.com/solana-labs/solana/releases/latest)"

1 change: 1 addition & 0 deletions scripts/update-solana.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@ else
fi

echo "Done"
export SOL_IMAGE="$latestVersion"

0 comments on commit 57d9020

Please sign in to comment.