forked from junit-team/junit5
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Re-open completed non-task/-question issues without assigned milestone
- Loading branch information
1 parent
b7349b4
commit 7d66196
Showing
2 changed files
with
62 additions
and
45 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 |
---|---|---|
@@ -0,0 +1,62 @@ | ||
name: Sanitizes assigned labels and milestone on closed issues | ||
on: | ||
issues: | ||
types: | ||
- closed | ||
permissions: read-all | ||
jobs: | ||
label_issues: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
steps: | ||
- uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7 | ||
with: | ||
script: | | ||
const issue = await github.rest.issues.get({ | ||
issue_number: context.issue.number, | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
}); | ||
const originalLabels = issue.data.labels.map(l => l.name); | ||
const newLabels = originalLabels.filter(l => l !== "status: in progress" && l !== "status: new"); | ||
if (newLabels.length !== originalLabels.length) { | ||
await github.rest.issues.update({ | ||
issue_number: issue.data.number, | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
labels: newLabels, | ||
}); | ||
} | ||
if (issue.data.state_reason === "not_planned") { | ||
const statusLabels = newLabels.filter(l => l.startsWith("status: ")); | ||
if (statusLabels.length === 0) { | ||
await github.rest.issues.createComment({ | ||
issue_number: issue.data.number, | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
body: "Please assign a status label to this issue.", | ||
}); | ||
await github.rest.issues.update({ | ||
issue_number: issue.data.number, | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
state: "open", | ||
}); | ||
} | ||
} else { | ||
if (!(newLabels.includes("type: task") || newLabels.includes("type: question")) && !issue.data.milestone) { | ||
await github.rest.issues.createComment({ | ||
issue_number: issue.data.number, | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
body: "Please assign a milestone to this issue or label it with `type: task` or `type: question`.", | ||
}); | ||
await github.rest.issues.update({ | ||
issue_number: issue.data.number, | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
state: "open", | ||
}); | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.