-
Notifications
You must be signed in to change notification settings - Fork 29.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PR-URL: #40985 Reviewed-By: Antoine du Hamel <[email protected]>
- Loading branch information
1 parent
ac025f1
commit 7756e1c
Showing
3 changed files
with
17 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,40 +28,17 @@ jobs: | |
- name: Install node-core-utils | ||
run: npm install -g node-core-utils | ||
|
||
- name: Set variables | ||
run: | | ||
echo "REPOSITORY=$(echo ${{ github.repository }} | cut -d/ -f2)" >> $GITHUB_ENV | ||
echo "OWNER=${{ github.repository_owner }}" >> $GITHUB_ENV | ||
# Get Pull Requests | ||
- name: Get Pull Requests | ||
uses: octokit/[email protected] | ||
id: get_prs_for_ci | ||
with: | ||
query: | | ||
query prs($owner:String!, $repo:String!) { | ||
repository(owner:$owner, name:$repo) { | ||
pullRequests(labels: ["request-ci"], states: OPEN, last: 100) { | ||
nodes { | ||
number | ||
} | ||
} | ||
} | ||
} | ||
owner: ${{ env.OWNER }} | ||
repo: ${{ env.REPOSITORY }} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Setup node-core-utils | ||
run: | | ||
ncu-config set username ${{ secrets.JENKINS_USER }} | ||
ncu-config set token none | ||
ncu-config set jenkins_token ${{ secrets.JENKINS_TOKEN }} | ||
ncu-config set owner ${{ env.OWNER }} | ||
ncu-config set repo ${{ env.REPOSITORY }} | ||
ncu-config set owner "${{ github.repository_owner }}" | ||
ncu-config set repo "$(echo ${{ github.repository }} | cut -d/ -f2)" | ||
- name: Start CI | ||
run: ./tools/actions/start-ci.sh $(echo '${{ steps.get_prs_for_ci.outputs.data }}' | jq '.repository.pullRequests.nodes | map(.number) | .[]') | ||
- name: Start the CI | ||
run: | | ||
PRs=$(gh pr list --label 'request-ci' --json number --jq 'map(.number) | .[]' --limit 100) | ||
./tools/actions/start-ci.sh "$PRs" | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,27 +46,6 @@ jobs: | |
echo "OWNER=${{ github.repository_owner }}" >> $GITHUB_ENV | ||
echo "DEFAULT_BRANCH=${GITHUB_REF#refs/heads/}" >> $GITHUB_ENV | ||
- name: Get Pull Requests | ||
uses: octokit/[email protected] | ||
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: ${{ env.DEFAULT_BRANCH }} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Configure node-core-utils | ||
run: | | ||
ncu-config set branch ${DEFAULT_BRANCH} | ||
|
@@ -77,7 +56,13 @@ jobs: | |
ncu-config set repo "${REPOSITORY}" | ||
ncu-config set owner "${OWNER}" | ||
- name: Start the commit queue | ||
run: ./tools/actions/commit-queue.sh ${OWNER} ${REPOSITORY} $(echo '${{ steps.get_mergable_pull_requests.outputs.data }}' | jq '.repository.pullRequests.nodes | map(.number) | .[]') | ||
- name: Start the Commit Queue | ||
run: | | ||
PRs=$(gh pr list \ | ||
--base ${{ env.DEFAULT_BRANCH }} \ | ||
--label 'commit-queue' \ | ||
--json number --jq 'map(.number) | .[]' \ | ||
--limit 100) | ||
./tools/actions/commit-queue.sh ${{ env.OWNER }} ${{ env.REPOSITORY }} "$PRs" | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GH_USER_TOKEN }} |