mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-15 10:13:15 -05:00
Fix: add sleep to close old discussions
This commit is contained in:
parent
3239c478a5
commit
66167aeb55
7
.github/workflows/repo-maintenance.yml
vendored
7
.github/workflows/repo-maintenance.yml
vendored
@ -50,9 +50,13 @@ jobs:
|
|||||||
name: 'Close Answered Discussions'
|
name: 'Close Answered Discussions'
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/github-script@v6
|
- uses: actions/github-script@v7
|
||||||
with:
|
with:
|
||||||
script: |
|
script: |
|
||||||
|
function sleep(ms) {
|
||||||
|
return new Promise(resolve => setTimeout(resolve, ms));
|
||||||
|
}
|
||||||
|
|
||||||
const query = `query($owner:String!, $name:String!) {
|
const query = `query($owner:String!, $name:String!) {
|
||||||
repository(owner:$owner, name:$name){
|
repository(owner:$owner, name:$name){
|
||||||
discussions(first:100, answered:true, states:[OPEN]) {
|
discussions(first:100, answered:true, states:[OPEN]) {
|
||||||
@ -96,4 +100,5 @@ jobs:
|
|||||||
}
|
}
|
||||||
await github.graphql(closeDiscussionMutation, closeVariables)
|
await github.graphql(closeDiscussionMutation, closeVariables)
|
||||||
|
|
||||||
|
await sleep(1000)
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user