Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added sensitive-files-check #3400

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
85 changes: 85 additions & 0 deletions .github/workflows/ci-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
name: CI Checks

on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches:
- main
- develop

jobs:
sensitive-files-check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Check for sensitive file changes
run: |
# Get the list of changed files
CHANGED_FILES=$(git diff --name-only ${{ github.event.pull_request.base.sha }} ${{ github.event.pull_request.head.sha }})

# Define sensitive files and directories
SENSITIVE_PATHS=(
".env"
".env.example"
"server/config/keys.js"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

server/config/keys.js, server/config/credentials.json, infrastructure/secrets do not exist in this repository!

"server/config/credentials.json"
"infrastructure/secrets/"
"kubernetes_app.yml"
)

# Initialize violation flag
VIOLATIONS_FOUND=0

# Check each changed file
for FILE in $CHANGED_FILES; do
for SENSITIVE_PATH in "${SENSITIVE_PATHS[@]}"; do
if [[ $FILE == $SENSITIVE_PATH* ]]; then
echo "⚠️ Warning: Sensitive file modified: $FILE"
VIOLATIONS_FOUND=1
fi
done
done

# Fail if violations found
if [ $VIOLATIONS_FOUND -eq 1 ]; then
echo "❌ Changes to sensitive files detected. Please review these changes carefully."
exit 1
else
echo "✅ No sensitive file modifications detected."
fi

build-and-health-check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'npm'

- name: Install dependencies
run: npm ci

- name: Build application
run: npm run build

- name: Start application
run: |
npm run start:prod &
echo "Waiting for application to start..."
sleep 30

- name: Run health check
run: npm run health-check

- name: Stop application
run: |
pkill -f "node index.js" || true
50 changes: 50 additions & 0 deletions .github/workflows/sensitive-files-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Sensitive Files Check

on:
pull_request:
types: [opened, synchronize, reopened]

jobs:
check-sensitive-files:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Check for sensitive file changes
run: |
# Get the list of changed files
CHANGED_FILES=$(git diff --name-only ${{ github.event.pull_request.base.sha }} ${{ github.event.pull_request.head.sha }})

# Define sensitive files and directories
SENSITIVE_PATHS=(
".env"
".env.example"
"kubernetes_app.yml"
"server/config/passpost.js"
"infrastructure/terraform/"
.github/workflows/*.yml
)

# Initialize violation flag
VIOLATIONS_FOUND=0

# Check each changed file
for FILE in $CHANGED_FILES; do
for SENSITIVE_PATH in "${SENSITIVE_PATHS[@]}"; do
if [[ $FILE == $SENSITIVE_PATH* ]]; then
echo "⚠️ Warning: Sensitive file modified: $FILE"
VIOLATIONS_FOUND=1
fi
done
done

# Fail if violations found
if [ $VIOLATIONS_FOUND -eq 1 ]; then
echo "❌ Changes to sensitive files detected. Please review these changes carefully."
exit 1
else
echo "✅ No sensitive file modifications detected."
fi
Loading