Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/victor-teles/gradle-properties-diff-checker
https://github.com/victor-teles/gradle-properties-diff-checker
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/victor-teles/gradle-properties-diff-checker
- Owner: victor-teles
- License: mit
- Created: 2023-09-14T00:19:23.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-02T12:54:38.000Z (over 1 year ago)
- Last Synced: 2023-10-02T15:53:38.829Z (over 1 year ago)
- Language: TypeScript
- Size: 108 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
## Usage
To include the action in a workflow in another repository, you can use the
`uses` syntax with the `@` symbol to reference a specific branch, tag, or commit
hash.```yaml
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v3- name: Gradle properties diff checker
id: gradle-diff
uses: victor-teles/gradle-properties-diff-checker@v1
with:
file-name: ./gradle.properties
property: version- name: Print Output
id: output
run: echo "${{ steps.gradle-diff.outputs.changed }}"
```Based on https://github.com/EndBug/version-check