add: initial support for DG SVR 865 Tiny board (SM8250/QCS8250) #537
This file contains hidden or 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: "Maintenance: Listen PR review" | |
| on: | |
| pull_request_review: | |
| types: [submitted] | |
| jobs: | |
| ping: | |
| if: ${{ github.event.review.state == 'approved' }} | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Save PR number | |
| run: echo "${{ github.event.pull_request.number }}" > pr.txt | |
| - uses: actions/upload-artifact@v6.0.0 | |
| with: | |
| # unique name: includes workflow run id | |
| name: pr-number-${{ github.run_id }} | |
| path: pr.txt |