https://github.com/open-sauced/diff-includes
This is an action inspired by netlify/actions to prevent synchronous actions if changes happen in a specified folder
https://github.com/open-sauced/diff-includes
Last synced: 8 months ago
JSON representation
This is an action inspired by netlify/actions to prevent synchronous actions if changes happen in a specified folder
- Host: GitHub
- URL: https://github.com/open-sauced/diff-includes
- Owner: open-sauced
- License: mit
- Created: 2019-12-01T14:39:41.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-12-07T01:22:59.000Z (almost 6 years ago)
- Last Synced: 2024-12-30T00:14:22.570Z (9 months ago)
- Language: Shell
- Size: 6.84 KB
- Stars: 1
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# diff-includes
This is an action inspired by [netlify/actions/diff-includes](https://github.com/netlify/actions/tree/master/diff-includes) to prevent synchronous actions if changes happen in a specified folder.## Usage
Usage information for individual commands can be found in their respective directories.```yml
on: push
name: Publish docs if changed
jobs:
checkChangesInDocs:
name: Check changes in docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Check changes in stories
uses: open-sauced/diff-includes
with:
args: docs
```