Skip to content

build(deps-dev): bump @commitlint/prompt-cli from 17.6.7 to 19.3.1 #142

build(deps-dev): bump @commitlint/prompt-cli from 17.6.7 to 19.3.1

build(deps-dev): bump @commitlint/prompt-cli from 17.6.7 to 19.3.1 #142

Workflow file for this run

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"