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
Hi, im attempting to get Frogbot PR scanning working on a Java project in my github organisation - but whilst it detects it is gradlew that is needed, it is failing with permission issues. I have tried using chmod in a previous step to no effect.
Are there any parameters on the frogbot action that are related to this?
@stephen-BT Got to the bottom of this - gradlew isnt marked as executable in git.
Resolved with:
git update-index --chmod=+x gradlew
git ls-files --stage (lists all the files - gradlew should now be 00755 rather than 00754)
git add gradlew
git commit -m "Make gradlew 0755 (executable)"
Had to do this through the command line as GitHub desktop did not recognise the change.
Hi, im attempting to get Frogbot PR scanning working on a Java project in my github organisation - but whilst it detects it is gradlew that is needed, it is failing with permission issues. I have tried using chmod in a previous step to no effect.
Are there any parameters on the frogbot action that are related to this?
Any assistance would be appreciated.
The text was updated successfully, but these errors were encountered: