Add support to shared extractors (#917)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Claudemirovsky
2022-10-11 06:03:49 -03:00
committed by GitHub
parent 411d137324
commit 05088707a0
92 changed files with 291 additions and 1280 deletions

View File

@ -29,6 +29,19 @@ jobs:
- name: Clone repo
uses: actions/checkout@v3
- name: Find lib changes
id: modified-libs
uses: tj-actions/changed-files@v32
with:
files: lib/**
files_ignore: lib/**.md
files_separator: " "
# This step is going to commit, but this will not trigger another workflow.
- name: Bump extensions that uses a modified lib
if: steps.modified-libs.outputs.any_changed == 'true'
run: |
./.github/scripts/bump-versions.sh ${{ steps.modified-libs.outputs.all_changed_files }}
- name: Validate Gradle Wrapper
uses: gradle/wrapper-validation-action@v1