Skip to content

Commit

Permalink
feat: Add hosts validation action
Browse files Browse the repository at this point in the history
  • Loading branch information
PerfectSlayer committed Oct 26, 2021
1 parent 11dcdbc commit 7fddc84
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/hosts-validation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Hosts Validation

on:
push:
paths:
- hotst.txt
pull_request:
paths:
- hotst.txt

workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Validate hosts file
run: |
input="hosts.txt"
debug=false
while IFS= read -r line
do
if [[ "$line" =~ ^\# ]]; then
$debug && echo "$line is a comment"
elif [[ "$line" = "" ]]; then
$debug && echo "line is empty"
elif [[ "$line" =~ ^127\.0\.0\.1 ]] || [[ "$line" =~ ^::1 ]]; then
$debug && echo "$line is an allowed redirection"
else
echo "$line is not an allowed redirection"
echo "Only redirection to the loopback interface is allowed (127.0.0.1 for IPv4 or ::1 for IPv6)"
exit 1
fi
done < "$input"
echo "Hosts file is valid"

0 comments on commit 7fddc84

Please sign in to comment.