Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
0xDEnYO committed Jul 30, 2024
1 parent c480dbf commit 98b2767
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/versionCheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,9 @@ jobs:
SHA="${{ github.sha }}"
echo "BASE_REF: $BASE_REF"
echo "SHA: $SHA"
FILES="src/Facets/AllBridgeFacet.sol"
echo "FILES=$FILES" >> $GITHUB_ENV
FILES=$(git diff --name-only origin/${BASE_REF})
echo "FILES=$FILES"
FILES2=$(git diff --name-only origin/${BASE_REF})
echo "FILES2=$FILES2"
echo "FILES=$FILES" >> $GITHUB_ENV
- name: Check version tags and post reminders
id: check_versions
Expand All @@ -40,6 +38,11 @@ jobs:
echo "FACETS found: $FACETS"
echo "PERIPHERY found: $PERIPHERY"
if [[ -z "$FACETS" && -z "$PERIPHERY" ]]; then
echo "No facets or periphery contracts found in files modified/added by this PR"
exit 0
fi
MISSING_VERSION_UPDATES=()
UPDATED_FILES=()
Expand Down

0 comments on commit 98b2767

Please sign in to comment.