[Rule] HAMILTONIAN PATH BETWEEN TWO VERTICES to LONGEST PATH #364
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: PR Automation | |
| on: | |
| issue_comment: | |
| types: [created] | |
| pull_request: | |
| types: [opened] | |
| jobs: | |
| pr-automation: | |
| if: | | |
| (github.event_name == 'issue_comment' && | |
| github.event.issue.pull_request && | |
| (startsWith(github.event.comment.body, '[action]') || | |
| startsWith(github.event.comment.body, '[fix]') || | |
| startsWith(github.event.comment.body, '[debug]'))) || | |
| (github.event_name == 'pull_request' && | |
| (contains(github.event.pull_request.body, '[action]') || | |
| contains(github.event.pull_request.body, '[fix]') || | |
| contains(github.event.pull_request.body, '[debug]'))) | |
| uses: GiggleLiu/pr-resolver/.github/workflows/pr-automation.yml@main | |
| secrets: inherit | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| statuses: write |