build: remove CircleCI (#42844) (#42908)

* build: remove CircleCI

* chore: remove remaining CircleCI references

(cherry picked from commit c006e129b3)

Co-authored-by: Keeley Hammond <vertedinde@electronjs.org>
This commit is contained in:
John Kleinschmidt 2024-07-15 17:56:53 -04:00 committed by GitHub
parent 02306b46a5
commit fe31c8eeac
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
20 changed files with 3 additions and 1972 deletions

View file

@ -7,8 +7,7 @@ async function checkIfDocOnlyChange () {
if (prNumber || prURL) {
try {
// CircleCI doesn't provide the PR number except on forked PRs,
// so to cover all cases we just extract it from the PR URL.
// extract the PR number from the PR URL.
if (!prNumber || isNaN(prNumber)) {
if (args.prURL) {
prNumber = prURL.split('/').pop();