Skip to content

Commit

Permalink
updates comments
Browse files Browse the repository at this point in the history
  • Loading branch information
0xDEnYO committed Sep 3, 2024
1 parent 9bc5f0b commit 436b953
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/protectAuditorsGroup.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Protect Auditors Group
# - makes sure that members of the auditor group cannot be members of a any smart-contract group
# - this ensures that no member can have multiple roles and use this to bypass audit requirements

name: Protect Auditors Group

on:
Expand All @@ -7,9 +11,6 @@ jobs:
protect-auditors-group:
runs-on: ubuntu-latest
steps:
- name: Check grep version
run: grep --version

- name: Compare Group Members
env:
GH_PAT: ${{ secrets.GIT_ACTIONS_BOT_PAT_CLASSIC }}
Expand Down Expand Up @@ -70,7 +71,6 @@ jobs:
echo "Checking for git users that are members of both $SC_CORE and $AUDITORS team..."
OVERLAP=$(comm -12 sc_admins_sorted.txt auditors_sorted.txt)
echo "OVERLAP: $OVERLAP"
if [ -n "$OVERLAP" ]; then
echo -e "\033[31mERROR: The following git users are members of both $SC_CORE and $AUDITORS groups: $OVERLAP\033[0m"
Expand Down

0 comments on commit 436b953

Please sign in to comment.