Load libpyg.so
first to let torch.library.register_fake
find custom operators
#1024
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
name: PR Labeler | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
jobs: | |
triage: | |
if: github.repository == 'pyg-team/pyg-lib' | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
pull-requests: write | |
steps: | |
- name: Add PR labels | |
uses: actions/labeler@v4 | |
continue-on-error: true | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
sync-labels: true | |
- name: Add PR author | |
uses: samspills/[email protected] | |
if: github.event_name == 'pull_request' | |
continue-on-error: true | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" |