Skip to content

Commit

Permalink
Add a step to print file content
Browse files Browse the repository at this point in the history
  • Loading branch information
araratthehero committed Jan 31, 2025
1 parent f3436d8 commit 7583f72
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/check_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
types: [ opened, synchronize, reopened ]

concurrency:
group: ${{ github.head_ref }}
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true

jobs:
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/validate_public_api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,14 @@ jobs:
( ./gradlew apiCheck --continue 2> "${{ github.workspace }}/api_changes.txt" ) || true
bash ./scripts/process_api_changes.sh
- name: Print file content txt
run: |
cat "${{ github.workspace }}/api_changes.txt"
- name: Print file content md
run: |
cat "${{ github.workspace }}/api_changes.md"
- name: Comment on PR
uses: thollander/actions-comment-pull-request@v3
with:
Expand Down

0 comments on commit 7583f72

Please sign in to comment.