File tree Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change 1-
2- name : " Finalize Ranking Scores (Scheduled)"
1+ name : " Finalize Review Scores"
32on :
4- schedule :
5- - cron : " 0 */2 * * *" # Runs every 2 hours
63 workflow_dispatch :
74
85jobs :
9- finalize-ranking :
6+ finalize-scoring :
107 runs-on : ubuntu-latest
118 steps :
12- - name : Process Unranked Nominations
9+ - name : Process Scored Nominations
1310 uses : actions/github-script@v6
1411 with :
1512 github-token : ${{ secrets.GITHUB_TOKEN }}
2926 const issue_number = issue.number;
3027 const currentLabels = issue.labels.map(label => label.name);
3128
32- if (currentLabels.includes("ranked")) continue; // Skip already ranked
29+ if (currentLabels.includes("ranked")) continue;
3330
3431 const comments = await github.rest.issues.listComments({
3532 owner,
You can’t perform that action at this time.
0 commit comments