You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/boring-open-awslc-bump.yml
+26-3Lines changed: 26 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
name: Bump BoringSSL and/or OpenSSL
1
+
name: Bump BoringSSL, OpenSSL, AWS-LC
2
2
permissions:
3
3
contents: read
4
4
@@ -38,6 +38,18 @@ jobs:
38
38
echo -e "## OpenSSL\n[Commit: ${SHA}](https://github.com/openssl/openssl/commit/${SHA})\n\n[Diff](https://github.com/openssl/openssl/compare/${LAST_COMMIT}...${SHA}) between the last commit hash merged to this repository and the new commit." >> $GITHUB_OUTPUT
CURRENT_TAG=$(grep aws-lc .github/workflows/ci.yml | grep VERSION | grep -o 'v[0-9\.]*')
46
+
47
+
if [ "$LATEST_TAG" != "$CURRENT_TAG" ]; then
48
+
echo "NEW_TAG=${LATEST_TAG}" >> $GITHUB_OUTPUT
49
+
echo "COMMIT_MSG<<EOF" >> $GITHUB_OUTPUT
50
+
echo -e "## AWS-LC\n[Tag: ${LATEST_TAG}](https://github.com/aws/aws-lc/releases/tag/${LATEST_TAG})\n\n[Diff](https://github.com/aws/aws-lc/compare/${CURRENT_TAG}...${LATEST_TAG}) between the previously used tag and the new tag." >> $GITHUB_OUTPUT
0 commit comments