fix: avoid creation of VirtualNode if ResourceSlice deleting #9862
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: Dispatch Slash Commands | |
| on: | |
| issue_comment: | |
| types: | |
| - created | |
| jobs: | |
| dispatch: | |
| name: Dispatch | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Dispatch Slash Commands | |
| uses: peter-evans/[email protected] | |
| with: | |
| token: ${{ secrets.CI_TOKEN }} | |
| reaction-token: ${{ secrets.CI_TOKEN }} | |
| issue-type: pull-request | |
| config: > | |
| [ | |
| { | |
| "command": "merge", | |
| "permission": "write" | |
| }, | |
| { | |
| "command": "rebase", | |
| "permission": "triage" | |
| }, | |
| { | |
| "command": "test", | |
| "permission": "triage" | |
| }, | |
| { | |
| "command": "build", | |
| "permission": "triage" | |
| }, | |
| { | |
| "command": "hold", | |
| "permission": "none" | |
| }, | |
| { | |
| "command": "unhold", | |
| "permission": "none" | |
| } | |
| ] |