Assign event loop to tasks and run a task's methods in the same loop #16266
Workflow file for this run
This file contains 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
# notifies users from CODENOTIFY files if a PR changed any files | |
# that they subscribe to | |
name: codenotify | |
on: | |
pull_request_target: | |
types: [opened, synchronize, ready_for_review] | |
jobs: | |
codenotify: | |
runs-on: ubuntu-latest | |
name: "Label and notify" | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
show-progress: false | |
- uses: sourcegraph/codenotify@v0.6.4 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- uses: actions/labeler@v4.3.0 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} |