do not filter map resulting accounts (#59) #53
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 to solana-v2.0 | |
| on: | |
| push: | |
| branches: [main] | |
| jobs: | |
| backport: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write | |
| contents: write | |
| steps: | |
| - name: Git Checkout | |
| uses: actions/checkout@v4 | |
| - name: Debug Permissions | |
| run: gh auth status | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Backport to v2.0 | |
| uses: ./.github/actions/backport | |
| with: | |
| label: v2.0 | |
| base_branch: solana-v2.0 | |
| github_token: ${{ secrets.GITHUB_TOKEN }} |