Skip to content

Commit

Permalink
Update deploy-tests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyCBakerPhD authored Oct 19, 2022
1 parent a948581 commit d15c799
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/deploy-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,18 @@ jobs:
assess-file-changes:
uses: catalystneuro/neuroconv/.github/workflows/assess-file-changes.yml@main

detect-changelog-updates:
needs: assess-file-changes
name: Auto-detecting CHANGELOG.md updates
runs-on: ubuntu-latest
steps:
- if: ${{ needs.assess-file-changes.outputs.CHANGELOG_UPDATED == 'true' }}
run: echo "CHANGELOG.md has been updated."
- if: ${{ needs.assess-file-changes.outputs.CHANGELOG_UPDATED == 'false' }}
run: |
echo "CHANGELOG.md has not been updated."
0
run-tests:
needs: assess-file-changes
if: ${{ needs.assess-file-changes.outputs.SOURCE_CHANGED == 'true' }}
Expand Down

0 comments on commit d15c799

Please sign in to comment.