Skip to content

Commit d3e2cf9

Browse files
committed
Use SPRING_ENTERPRISE_TOKEN
Signed-off-by: Josh Cummings <[email protected]>
1 parent bb969d3 commit d3e2cf9

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

.github/workflows/run-advisor.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
name: Run Advisor
2+
13
permissions:
24
issues: write
35
contents: write
@@ -9,15 +11,18 @@ jobs:
911
runner:
1012
runs-on: ubuntu-latest
1113
steps:
12-
- uses: actions/checkout@v5
13-
- uses: jzheaux/spring-guides-actions/run-advisor@main
14+
- name: Checkout Project
15+
uses: actions/checkout@v5
16+
- name: Run Advisor on Initial
17+
uses: jzheaux/spring-guides-actions/run-advisor@main
1418
with:
1519
spring-enterprise-username: ${{ secrets.SPRING_ENTERPRISE_USERNAME }}
16-
spring-enterprise-token: ${{ secrets.SPRING_ENTERPRISE_PASSWORD }}
20+
spring-enterprise-token: ${{ secrets.SPRING_ENTERPRISE_TOKEN }}
1721
directory: initial
18-
- uses: jzheaux/spring-guides-actions/run-advisor@main
22+
- name: Run Advisor on Complete
23+
uses: jzheaux/spring-guides-actions/run-advisor@main
1924
with:
2025
spring-enterprise-username: ${{ secrets.SPRING_ENTERPRISE_USERNAME }}
21-
spring-enterprise-token: ${{ secrets.SPRING_ENTERPRISE_PASSWORD }}
26+
spring-enterprise-token: ${{ secrets.SPRING_ENTERPRISE_TOKEN }}
2227
directory: complete
2328

0 commit comments

Comments
 (0)