Add interface changes for async repository downloads #1401
Workflow file for this run
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: Check Compatibility | |
on: | |
pull_request_target | |
jobs: | |
check-compatibility: | |
if: github.repository == 'opensearch-project/OpenSearch' | |
permissions: | |
contents: read | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Run compatibility task | |
run: ./gradlew checkCompatibility -i | tee $HOME/gradlew-check.out | |
- name: Get results | |
run: | | |
echo '## Compatibility status:' > "${{ github.workspace }}/results.txt" | |
echo "Checks if related components are compatible with change $(git rev-parse --short HEAD)" >> "${{ github.workspace }}/results.txt" | |
echo "### Incompatible components" >> "${{ github.workspace }}/results.txt" && grep -e 'Incompatible component' $HOME/gradlew-check.out | sed -e 's/Incompatible component: \[\(.*\)\]/- \1/' >> "${{ github.workspace }}/results.txt" | |
echo "### Skipped components" >> "${{ github.workspace }}/results.txt" && grep -e 'Skipped component' $HOME/gradlew-check.out | sed -e 's/Skipped component: \[\(.*\)\]/- \1/' >> "${{ github.workspace }}/results.txt" | |
echo "### Compatible components" >> "${{ github.workspace }}/results.txt" && grep -e 'Compatible component' $HOME/gradlew-check.out | sed -e 's/Compatible component: \[\(.*\)\]/- \1/' >> "${{ github.workspace }}/results.txt" | |
- name: Upload results | |
uses: actions/upload-artifact@v3 | |
with: | |
name: results.txt | |
path: ${{ github.workspace }}/results.txt | |
add-comment: | |
needs: [check-compatibility] | |
permissions: | |
pull-requests: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download results | |
uses: actions/download-artifact@v3 | |
with: | |
name: results.txt | |
- name: Add comment on the PR | |
uses: peter-evans/create-or-update-comment@v3 | |
with: | |
issue-number: ${{ github.event.number }} | |
body-path: results.txt |