Browse Source
Hopefully fix checks triggering for crowdin download
pull/7903/head
Devon R
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with
14 additions and
20 deletions
-
.github/workflows/build.yml
-
.github/workflows/lint.yml
-
.github/workflows/scripts/close_and_reopen_pr.js
-
.github/workflows/test.yml
|
|
@ -3,7 +3,7 @@ name: build |
|
|
|
on: |
|
|
|
push: |
|
|
|
pull_request: |
|
|
|
types: [ opened, synchronize ] |
|
|
|
types: [ opened, reopened, synchronize ] |
|
|
|
|
|
|
|
jobs: |
|
|
|
dists-and-docs: |
|
|
|
|
|
@ -3,7 +3,7 @@ name: lint |
|
|
|
on: |
|
|
|
push: |
|
|
|
pull_request: |
|
|
|
types: [ opened, synchronize ] |
|
|
|
types: [ opened, reopened, synchronize ] |
|
|
|
|
|
|
|
jobs: |
|
|
|
check: |
|
|
|
|
|
@ -7,22 +7,16 @@ module.exports = (async function ({github, context}) { |
|
|
|
return; |
|
|
|
} |
|
|
|
|
|
|
|
// Close the PR
|
|
|
|
github.issues.update({ |
|
|
|
issue_number: pr_number, |
|
|
|
owner: context.repo.owner, |
|
|
|
repo: context.repo.repo, |
|
|
|
state: 'closed' |
|
|
|
}); |
|
|
|
for (const state of ['closed', 'open']) { |
|
|
|
// Wait a moment for GitHub to process the previous action..
|
|
|
|
await new Promise(r => setTimeout(r, 5000)); |
|
|
|
|
|
|
|
// Wait a moment for GitHub to process it...
|
|
|
|
await new Promise(r => setTimeout(r, 2000)); |
|
|
|
|
|
|
|
// Then reopen the PR so it runs CI
|
|
|
|
github.issues.update({ |
|
|
|
issue_number: pr_number, |
|
|
|
owner: context.repo.owner, |
|
|
|
repo: context.repo.repo, |
|
|
|
state: 'open' |
|
|
|
}); |
|
|
|
// Close the PR
|
|
|
|
github.issues.update({ |
|
|
|
issue_number: pr_number, |
|
|
|
owner: context.repo.owner, |
|
|
|
repo: context.repo.repo, |
|
|
|
state |
|
|
|
}); |
|
|
|
} |
|
|
|
}) |
|
|
|
|
|
@ -3,7 +3,7 @@ name: test |
|
|
|
on: |
|
|
|
push: |
|
|
|
pull_request: |
|
|
|
types: [ opened, synchronize ] |
|
|
|
types: [ opened, reopened, synchronize ] |
|
|
|
|
|
|
|
jobs: |
|
|
|
pytest: |
|
|
|