Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / .github / workflows / pr-receive-label.yml
blobc9085c44b9836110f8d7983b893c36c7c928a298
1 # See https://securitylab.github.com/research/github-actions-preventing-pwn-requests/
3 name: PR Receive Label
4 on:
5   pull_request:
6     types:
7       - labeled
9 permissions:
10   contents: read
12 jobs:
13   pr-subscriber:
14     runs-on: ubuntu-latest
15     if: github.repository == 'llvm/llvm-project'
16     steps:
17       - name: Store PR Information
18         run: |
19           mkdir -p ./pr
20           echo ${{ github.event.number }} > ./pr/NR
21           echo ${{ github.event.label.name }} > ./pr/LABEL
23       - uses: actions/upload-artifact@v3
24         with:
25           name: pr
26           path: pr/