[AIE2] Combiners for 8x8->8x8 and 8x4->4x8 matrix transposes #25
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 Subscriber | |
on: | |
pull_request_target: | |
types: | |
- labeled | |
permissions: | |
contents: read | |
jobs: | |
auto-subscribe: | |
runs-on: ubuntu-latest | |
if: github.repository == 'llvm/llvm-project' | |
steps: | |
- name: Setup Automation Script | |
run: | | |
curl -O -L --fail https://raw.githubusercontent.com/"$GITHUB_REPOSITORY"/main/llvm/utils/git/github-automation.py | |
curl -O -L --fail https://raw.githubusercontent.com/"$GITHUB_REPOSITORY"/main/llvm/utils/git/requirements.txt | |
chmod a+x github-automation.py | |
pip install -r requirements.txt | |
- name: Update watchers | |
run: | | |
./github-automation.py \ | |
--token '${{ secrets.ISSUE_SUBSCRIBER_TOKEN }}' \ | |
pr-subscriber \ | |
--issue-number "${{ github.event.number }}" \ | |
--label-name "${{ github.event.label.name }}" |