FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
node/.github/workflows/commit-queue.yml at master · dev-script/node · GitHub
dev-script
/
node
Public
forked from
nodejs/node
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
node
/
.github
/
workflows
/
commit-queue.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
81 lines (72 loc) · 3.16 KB
Breadcrumbs
node
/
.github
/
workflows
/
commit-queue.yml
Copy path
File metadata and controls
81 lines (72 loc) · 3.16 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
---
#
This action requires the following secrets to be set on the repository:
#
GH_USER_NAME: GitHub user whose Jenkins and GitHub token are defined below
#
GH_USER_TOKEN: GitHub user token, to be used by ncu and to push changes
#
JENKINS_TOKEN: Jenkins token, to be used to check CI status
name
:
Commit Queue
on
:
#
`schedule` event is used instead of `pull_request` because when a
#
`pull_request` event is triggered on a PR from a fork, GITHUB_TOKEN will
#
be read-only, and the Action won't have access to any other repository
#
secrets, which it needs to access Jenkins API.
schedule
:
-
cron
:
"
*/5 * * * *
"
env
:
NODE_VERSION
:
14.x
jobs
:
commitQueue
:
if
:
github.repository == 'nodejs/node'
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/checkout@v2
with
:
#
Needs the whole git history for ncu to work
#
See https://github.com/nodejs/node-core-utils/pull/486
fetch-depth
:
0
#
A personal token is required because pushing with GITHUB_TOKEN will
#
prevent commits from running CI after they land. It needs
#
to be set here because `checkout` configures GitHub authentication
#
for push as well.
token
:
${{ secrets.GH_USER_TOKEN }}
#
Install dependencies
-
name
:
Install Node.js
uses
:
actions/setup-node@v2
with
:
node-version
:
${{ env.NODE_VERSION }}
-
name
:
Install node-core-utils
run
:
npm install -g node-core-utils@latest
-
name
:
Set variables
run
:
|
echo "REPOSITORY=$(echo ${{ github.repository }} | cut -d/ -f2)" >> $GITHUB_ENV
echo "OWNER=${{ github.repository_owner }}" >> $GITHUB_ENV
-
name
:
Get Pull Requests
uses
:
octokit/graphql-action@v2.x
id
:
get_mergable_pull_requests
with
:
query
:
|
query release($owner:String!,$repo:String!, $base_ref:String!) {
repository(owner:$owner, name:$repo) {
pullRequests(baseRefName: $base_ref, labels: ["commit-queue"], states: OPEN, last: 100) {
nodes {
number
}
}
}
}
owner
:
${{ env.OWNER }}
repo
:
${{ env.REPOSITORY }}
#
Commit queue is only enabled for the default branch on the repository
base_ref
:
${{ github.repository.default_branch }}
env
:
GITHUB_TOKEN
:
${{ secrets.GITHUB_TOKEN }}
-
name
:
Configure node-core-utils
run
:
|
ncu-config set branch ${{ github.repository.default_branch }}
ncu-config set upstream origin
ncu-config set username "${{ secrets.GH_USER_NAME }}"
ncu-config set token "${{ secrets.GH_USER_TOKEN }}"
ncu-config set jenkins_token "${{ secrets.JENKINS_TOKEN }}"
ncu-config set repo "${{ env.REPOSITORY }}"
ncu-config set owner "${{ env.OWNER }}"
-
name
:
Start the commit queue
run
:
./tools/actions/commit-queue.sh ${{ env.OWNER }} ${{ env.REPOSITORY }} ${{ secrets.GITHUB_TOKEN }} $(echo '${{ steps.get_mergable_pull_requests.outputs.data }}' | jq '.repository.pullRequests.nodes | map(.number) | .[]')
Back
|
FazBrowse Home
|
New Git URL