-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add fix labels script just in case of release problems
- Loading branch information
Showing
1 changed file
with
69 additions
and
0 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,69 @@ | ||
name: Fix Release Labels (Maintainers Only) | ||
|
||
on: | ||
# Runs manually by maintainer | ||
workflow_dispatch: | ||
inputs: | ||
update: | ||
description: 'Do you want to update the release labels?' | ||
required: false | ||
default: false | ||
type: boolean | ||
|
||
permissions: | ||
contents: write | ||
issues: write | ||
pull-requests: write | ||
statuses: write | ||
|
||
jobs: | ||
find-n-fix-release-label: | ||
name: Find and Fix Release Labels | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
# Check permissions | ||
- uses: tspascoal/get-user-teams-membership@v3 | ||
id: permissions | ||
with: | ||
username: ${{ github.actor }} | ||
team: 'ESL Core Maintainers' | ||
GITHUB_TOKEN: ${{ secrets.PERMISSION_CHECK_TOKEN }} | ||
|
||
- if: ${{ steps.permissions.outputs.isTeamMember == 'true' }} | ||
name: Access Check Passed | ||
run: echo ${{ github.actor }} is in 'ESL Core Maintainers' group | ||
- if: ${{ steps.permissions.outputs.isTeamMember == 'false' }} | ||
name: Access Denied | ||
run: exit 1 | ||
|
||
- name: Find 'released on @beta' issues without 'released' label | ||
id: find-issues | ||
uses: actions/github-script@v5 | ||
with: | ||
script: | | ||
const { data: issues } = await github.issues.listForRepo({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
labels: 'released on @beta', | ||
state: 'all' | ||
}); | ||
const issuesWithoutReleasedLabel = issues.filter(issue => !issue.labels.some(label => label.name === 'released')); | ||
console.log('Issues without "released" label: ', issuesWithoutReleasedLabel.map(issue => '#' + issue.number).join(', ')); | ||
core.setOutput('issuesWithoutReleasedLabel', JSON.stringify(issuesWithoutReleasedLabel.map(issue => issue.number))); | ||
- name: Add 'released' label to issues | ||
if: steps.find-issues.outputs.issuesWithoutReleasedLabel && inputs.update | ||
uses: actions/github-script@v5 | ||
with: | ||
script: | | ||
const issues = JSON.parse(core.getInput('issuesWithoutReleasedLabel')); | ||
for (const issue of issues) { | ||
console.log(`Adding 'released' label to issue #${issue}`); | ||
await github.issues.addLabels({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
issue_number: issue, | ||
labels: ['released'] | ||
}); | ||
} |