|
1 | 1 | name: "Labelling new pull requests"
|
2 | 2 | on:
|
3 |
| -- pull_request_target |
| 3 | + workflow_run: |
| 4 | + workflows: ["PR Receive"] |
4 | 5 |
|
5 | 6 | jobs:
|
6 | 7 | automate-prs-labels:
|
7 | 8 | permissions:
|
8 | 9 | contents: read
|
9 | 10 | pull-requests: write
|
10 | 11 | runs-on: ubuntu-latest
|
11 |
| - if: github.repository == 'llvm/llvm-project' |
| 12 | + if: > |
| 13 | + github.repository == 'llvm/llvm-project' && |
| 14 | + github.event.workflow_run.event == 'pull_request_target' && |
| 15 | + github.event.workflow_run.conclusion == 'success' |
12 | 16 | steps:
|
13 |
| - - uses: actions/labeler@v4 |
14 |
| - with: |
15 |
| - configuration-path: .github/new-prs-labeler.yml |
16 |
| - # workaround for https://github.com/actions/labeler/issues/112 |
17 |
| - sync-labels: '' |
| 17 | + # From: https://securitylab.github.com/research/github-actions-preventing-pwn-requests/ |
| 18 | + # Updated version here: https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#using-data-from-the-triggering-workflow |
| 19 | + - name: Debug |
| 20 | + run: | |
| 21 | + echo "Event: ${{ github.event.workflow_run.event }} Conclusion: ${{ github.event.workflow_run.conclusion }}" |
| 22 | + - name: 'Download artifact' |
| 23 | + uses: actions/github-script@v6 |
| 24 | + with: |
| 25 | + script: | |
| 26 | + var artifacts = await github.rest.actions.listWorkflowRunArtifacts({ |
| 27 | + owner: context.repo.owner, |
| 28 | + repo: context.repo.repo, |
| 29 | + run_id: context.payload.workflow_run.id, |
| 30 | + }); |
| 31 | + var matchArtifact = artifacts.data.artifacts.filter((artifact) => { |
| 32 | + return artifact.name == "pr" |
| 33 | + })[0]; |
| 34 | + var download = await github.rest.actions.downloadArtifact({ |
| 35 | + owner: context.repo.owner, |
| 36 | + repo: context.repo.repo, |
| 37 | + artifact_id: matchArtifact.id, |
| 38 | + archive_format: 'zip', |
| 39 | + }); |
| 40 | + var fs = require('fs'); |
| 41 | + fs.writeFileSync('${{github.workspace}}/pr.zip', Buffer.from(download.data)); |
| 42 | +
|
| 43 | + - run: unzip pr.zip |
| 44 | + |
| 45 | + - name: "Get PR Number" |
| 46 | + id: vars |
| 47 | + run: |
| 48 | + echo "pr-number=`cat NR`" >> $GITHUB_OUTPUT |
| 49 | + |
| 50 | + - uses: actions/labeler@v4 |
| 51 | + with: |
| 52 | + configuration-path: .github/new-prs-labeler.yml |
| 53 | + # workaround for https://github.com/actions/labeler/issues/112 |
| 54 | + sync-labels: '' |
| 55 | + repo-token: ${{ secrets.ISSUE_SUBSCRIBER_TOKEN }} |
| 56 | + pr-number: ${{steps.vars.outputs.pr-number}} |
0 commit comments