[RISCV][GISel] Move G_BRJT expansion to legalization (#73711)
[llvm-project.git] / .github / workflows / pr-subscriber.yml
blob272d3e2f9ef8a31da37ab1301be79227dc23c96c
1 name: PR Subscriber
3 on:
4   pull_request_target:
5     types:
6       - labeled
8 permissions:
9   contents: read
11 jobs:
12   auto-subscribe:
13     runs-on: ubuntu-latest
14     if: github.repository == 'llvm/llvm-project'
15     steps:
16       - name: Checkout Automation Script
17         uses: actions/checkout@v4
18         with:
19           sparse-checkout: llvm/utils/git/
20           ref: main
22       - name: Setup Automation Script
23         working-directory: ./llvm/utils/git/
24         run: |
25           pip install --require-hashes -r requirements.txt
27       - name: Update watchers
28         working-directory: ./llvm/utils/git/
29         run: |
30           python3 ./github-automation.py \
31             --token '${{ secrets.ISSUE_SUBSCRIBER_TOKEN }}' \
32             pr-subscriber \
33             --issue-number "${{ github.event.number }}" \
34             --label-name "${{ github.event.label.name }}"