627 implement automatic version bump of subprojects #22
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Changed-files | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
changed_files: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
pull-requests: write | |
outputs: | |
status: ${{ steps.check-labels.outputs.status }} | |
name: Test changed-files | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Get javascore files that have changed | |
id: changed-files-javascore | |
uses: tj-actions/changed-files@v39 | |
with: | |
files_yaml: | | |
ibc: | |
- 'contracts/javascore/ibc/**' | |
lightclients: | |
- contracts/javascore/lightclients/** | |
xcall-connection: | |
- contracts/javascore/xcall-connection/** | |
- name: Run step if test file(s) change | |
if: steps.changed-files-javascore.outputs.ibc_any_changed == 'true' | |
run: | | |
echo "$steps.changed-files-javascore.outputs.ibc_any_changed" | |
echo "One or more test file(s) has changed." | |
echo "List all the files that have changed: ${{ steps.changed-files-javascore.outputs.ibc_all_changed_files }}" | |
- name: Run step if doc file(s) change | |
if: steps.changed-files-javascore.outputs.lightclients_any_changed == 'true' | |
run: | | |
echo "One or more doc file(s) has changed." | |
echo "List all the files that have changed: ${{ steps.changed-files-javascore.outputs.lightclients_all_changed_files }}" | |
- name: Check Label | |
id: check-labels | |
uses: mheap/github-action-required-labels@v5 | |
with: | |
mode: exactly | |
count: 1 | |
labels: "semver:patch, semver:minor, semver:major, cicd" | |
exit_type: success | |
- name: check value | |
run: echo "${{steps.check-labels.outputs.labels}}" | |