Skip to content

Commit

Permalink
T6506: Add a linting rule for checking executable bits on scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
natali-rs1985 committed Jun 25, 2024
1 parent 4e9f1b4 commit 8335d0a
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/check-scripts-executable.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: "Check for Jenkins build scripts has executable bit"

on:
pull_request:
branches:
- current
- 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

0 comments on commit 8335d0a

Please sign in to comment.