-
Notifications
You must be signed in to change notification settings - Fork 381
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
T6506: Add a linting rule for checking executable bits on scripts
- Loading branch information
1 parent
4e9f1b4
commit 974a355
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: "Check for Jenkins build scripts has executable bit" | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- current | ||
- circinus | ||
- sagitta | ||
- equuleus | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
check-scripts-executable: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
repository: ${{ github.repository }} | ||
- name: Checking scripts are executable | ||
run: | | ||
files=$(find packages/ -type f -name '*.py' -or -name '*.sh' -not -executable -print) | ||
if [[ -n $files ]]; then | ||
echo "Found files without executable bit:" | ||
for file in $files; do | ||
echo $file; | ||
done; | ||
exit 1; | ||
fi | ||
shell: bash |