[N4] Adapt neo-node to Neo 4.0.0 #320
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: Auto-label PRs | |
| on: | |
| pull_request_target: | |
| types: [opened, synchronize, reopened] | |
| permissions: | |
| pull-requests: write | |
| jobs: | |
| add-label: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Add N4 label to PRs targeting master | |
| if: github.event.pull_request.base.ref == 'master' | |
| uses: actions-ecosystem/action-add-labels@v1.1.3 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| labels: | | |
| N4 | |
| - name: Add N3 label to PRs targeting master-n3 | |
| if: github.event.pull_request.base.ref == 'master-n3' | |
| uses: actions-ecosystem/action-add-labels@v1.1.3 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| labels: | | |
| N3 |