Skip to content

Commit ab3a992

Browse files
committed
fix(github-actions): use correct version of node for issue labeling workflow
1 parent d8ad0b7 commit ab3a992

2 files changed

Lines changed: 22 additions & 1 deletion

File tree

.github/workflows/dev-infra.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: DevInfra
2+
3+
on:
4+
pull_request_target:
5+
types: [opened, synchronize, reopened]
6+
issues:
7+
types: [opened, reopened]
8+
9+
# Declare default permissions as read only.
10+
permissions:
11+
contents: read
12+
13+
jobs:
14+
issue_labels:
15+
if: github.event_name == 'issues'
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: ./github-actions/issue-labeling
19+
with:
20+
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}
21+
google-generative-ai-key: ${{ secrets.GOOGLE_GENERATIVE_AI_KEY }}

github-actions/issue-labeling/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ inputs:
88
description: 'The API key for Google Generative AI'
99
required: true
1010
runs:
11-
using: 'node22'
11+
using: 'node20'
1212
main: 'main.js'

0 commit comments

Comments
 (0)