-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into docs/ReadMeUpdate
- Loading branch information
Showing
8 changed files
with
114 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Check for early exit | ||
description: | | ||
This action checks for changes in specific directories and | ||
exits early if there are none | ||
runs: | ||
using: composite | ||
steps: | ||
- name: Check location of changed files | ||
shell: bash | ||
run: | | ||
change_count=$(git diff --name-only origin/main..HEAD | grep -E '^(app/.*)|(.yarn/.*)|(.github/workflows/.*)' | wc -l) | ||
echo "$change_count files changed in app, .yarn, or .github/workflows" | ||
if [ $change_count -gt 0 ]; then | ||
# A result greater than 0 means there are changes | ||
# in the specified directories. | ||
echo "result=false" >> $GITHUB_OUTPUT | ||
else | ||
echo "result=true" >> $GITHUB_OUTPUT | ||
fi | ||
# - name: Record output | ||
# if: env.output > 0 | ||
# shell: bash | ||
# run: | | ||
# echo "${{ env.output }} files changed in app, .yarn, or .github/workflows" | ||
# echo "result=false" >> $GITHUB_OUTPUT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,3 +66,5 @@ app/vendor/bundle/** | |
|
||
# child packages | ||
bifold/ | ||
aries-oca-bundles/ | ||
credo-ts/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters