Skip to content
This repository has been archived by the owner on Feb 5, 2024. It is now read-only.

Commit

Permalink
Merge pull request #8 from doximity/np-resolve-deprecations
Browse files Browse the repository at this point in the history
Resolve deprecations
  • Loading branch information
Nicholas Pufal authored Nov 17, 2022
2 parents 5c9e2ed + 171e80d commit 07b2f2f
Show file tree
Hide file tree
Showing 5 changed files with 7,228 additions and 414 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test_action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ jobs:
# To use this repository's private action,
# we must check out the repository
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- id: check-for-readme-changes
uses: ./
with:
ref: master
callback: |
return filenamesList.some((elem) => { return elem.match(/README/) })
return filenamesList.some((elem) => { return elem.match(/package\.json/) })
- name: Run this step only if README changes are detected
if: ${{ steps.check-for-readme-changes.outputs.callback_return == 'true' }}
run: |
echo "This REF includes README changes"
echo "This REF includes package.json changes"
Loading

0 comments on commit 07b2f2f

Please sign in to comment.