1 # See https://securitylab.github.com/research/github-actions-preventing-pwn-requests/
17 runs-on: ubuntu-latest
18 # Ignore PRs with more than 10 commits. Pull requests with a lot of
19 # commits tend to be accidents usually when someone made a mistake while trying
20 # to rebase. We want to ignore these pull requests to avoid excessive
22 if: github.repository == 'llvm/llvm-project' &&
23 github.event.pull_request.draft == false &&
24 github.event.pull_request.commits < 10
26 - name: Store PR Information
29 echo ${{ github.event.number }} > ./pr/NR
31 - uses: actions/upload-artifact@v3