Skip to content

Commit

Permalink
fix PR title
Browse files Browse the repository at this point in the history
  • Loading branch information
zoff99 committed Nov 12, 2024
1 parent a90324c commit 1cb9f12
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dep_iocipher_jni.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: check if jni update or witness checksums only
id: titletext_str
run: |
(git status 2>/dev/null|grep '^\+' 2>/dev/null|grep -e 'implementation' -e 'com.github.zoff99:pkgs_guardianprojectIOCipher' 2>/dev/null && echo "jni version update" && release_tag=$(cat output.txt|grep '__VERSIONUPDATE__'|cut -d':' -f2) && echo "titletext=update iocipher JNI to $release_tag" >> $GITHUB_OUTPUT) || \
(git diff android-refimpl-app/app/build.gradle android-refimpl-app/app/witness.gradle 2>/dev/null|grep '^\+' 2>/dev/null|(grep 'com.github.zoff99:pkgs_guardianprojectIOCipher' 2>/dev/null| grep 'implementation' 2>/dev/null) && echo "jni version update" && release_tag=$(cat output.txt|grep '__VERSIONUPDATE__'|cut -d':' -f2) && echo "titletext=update iocipher JNI to $release_tag" >> $GITHUB_OUTPUT) || \
(echo "gradle witness checksums update";echo "titletext=update gradle witness checksums 2" >> $GITHUB_OUTPUT;echo "release_tag=" >> $GITHUB_OUTPUT)
- name: cleanup
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dep_toxcore_jni.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ jobs:
- name: check if toxcore update or witness checksums only
id: titletext_str
run: |
(git status 2>/dev/null|grep '^\+' 2>/dev/null|grep 'com.github.zoff99:pkgs_ToxAndroidRefImpl' 2>/dev/null && echo "jni version update" && release_tag=$(cat output.txt|grep '__VERSIONUPDATE__'|cut -d':' -f2) && echo "titletext=update toxcore JNI to $release_tag" >> $GITHUB_OUTPUT) || \
(echo "gradle witness checksums update";echo "titletext=update gradle witness checksums" >> $GITHUB_OUTPUT;echo "release_tag=" >> $GITHUB_OUTPUT)
(git diff android-refimpl-app/app/build.gradle android-refimpl-app/app/witness.gradle 2>/dev/null|grep '^\+' 2>/dev/null|(grep 'com.github.zoff99:pkgs_ToxAndroidRefImpl' 2>/dev/null| grep 'implementation' 2>/dev/null) && echo "jni version update" && release_tag=$(cat output.txt|grep '__VERSIONUPDATE__'|cut -d':' -f2) && echo "titletext=update toxcore JNI to $release_tag" >> $GITHUB_OUTPUT) || \
(echo "gradle witness checksums update";echo "titletext=update gradle witness checksums 1" >> $GITHUB_OUTPUT;echo "release_tag=" >> $GITHUB_OUTPUT)
- name: cleanup
run: rm -f output.txt
Expand Down

0 comments on commit 1cb9f12

Please sign in to comment.