-
Notifications
You must be signed in to change notification settings - Fork 288
42 lines (40 loc) · 1.44 KB
/
privileged-pr-process.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: "Process Pull Request"
# NOTE: This workflow is privileged, and shouldn't be used to checkout the repo or run any of the PR code
# See more in: https://securitylab.github.com/research/github-actions-preventing-pwn-requests
on:
- pull_request_target
jobs:
label:
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v4
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
add-milestone:
runs-on: ubuntu-latest
steps:
- name: Add milestone
uses: actions/github-script@v7
id: assets
with:
script: |
var milestone = await github.rest.issues.listMilestones({
owner: context.repo.owner,
repo: context.repo.repo,
state: 'open',
sort: 'due_on',
direction: 'asc'
})
.then(result => result.data[0])
.catch(err => {throw "ERROR: " + err.message});
if (milestone) {
await github.rest.issues.update({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.payload.number,
milestone: milestone.number,
});
core.setOutput('milestone', milestone.number);
} else {
console.log(`No milestone found. Please create one first.`);
}