Skip to content

Commit cf6a393

Browse files
Update finalize-ranking-scheduled.yml
1 parent 5338897 commit cf6a393

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/workflows/finalize-ranking-scheduled.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
1-
2-
name: "Finalize Ranking Scores (Scheduled)"
1+
name: "Finalize Review Scores"
32
on:
4-
schedule:
5-
- cron: "0 */2 * * *" # Runs every 2 hours
63
workflow_dispatch:
74

85
jobs:
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 }}
@@ -29,7 +26,7 @@ jobs:
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,

0 commit comments

Comments
 (0)