build(deps-dev): bump @commitlint/prompt-cli from 17.6.7 to 19.3.1 #142
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
name: Has Changes | |
on: push | |
jobs: | |
has-changes: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.head_ref }} | |
- name: Make changes | |
run: touch change.temp | |
# This step will evaluate the repo status and report the change | |
- name: Check if there are changes | |
id: changes | |
uses: UnicornGlobal/has-changes-action@v1.0.11 | |
# You can now access a variable indicating if there have been changes | |
- name: Process changes | |
if: steps.changes.outputs.changed == 1 | |
run: echo "Changes exist" |