Backport 79830 to v2.7 branch: Add stream_flash_erase_page range check #962
Workflow file for this run
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: Backport Issue Check | |
| on: | |
| pull_request_target: | |
| branches: | |
| - v*-branch | |
| jobs: | |
| backport: | |
| name: Backport Issue Check | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Check out source code | |
| uses: actions/checkout@v3 | |
| - name: Install Python dependencies | |
| run: | | |
| sudo pip3 install -U setuptools wheel pip | |
| pip3 install -U pygithub | |
| - name: Run backport issue checker | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.ZB_GITHUB_TOKEN }} | |
| run: | | |
| ./scripts/release/list_backports.py \ | |
| -o ${{ github.event.repository.owner.login }} \ | |
| -r ${{ github.event.repository.name }} \ | |
| -b ${{ github.event.pull_request.base.ref }} \ | |
| -p ${{ github.event.pull_request.number }} |