Skip to content

A small workflow to help you release your typescript/javascript apps or packages. Works with monorepos

License

Notifications You must be signed in to change notification settings

Octopus-Moneycoach/version-has-changed

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

Has Version Changed Github Action

Checks if the version field in a given package.json file has been changed compared to master. Useful for CI/CD pipelines where you want to only run a job if the version has changed.

Usage:

name: 'example-push'
on: push

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v3
        with:
          fetch-depth: 0 # Necessary so we have commit history to compare to

      - name: package-a changed in last commit?
        id: changedAction
        uses: Octopus-Moneycoach/version-has-changed@v1
        with:
          path: package.json # Root package.json file
          from: HEAD^1 # Check for changes since previous commit (feel free to put a branch name instead in the form of origin/<branchName>)
          to: HEAD^

      # Do something more meaningful here, like push to NPM, do heavy computing, etc.
      - name: Validate Action Output
        if: steps.changedAction.outputs.changed == 'true' # Check output if it changed or not (returns a boolean)
        run: echo 'package-a changed!'

About

A small workflow to help you release your typescript/javascript apps or packages. Works with monorepos

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published