File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 39
39
npm i
40
40
- name : Build
41
41
env :
42
- GITHUB_API_TOKEN : ${{ secrets.GITHUB_TOKEN }}
42
+ COLLABORATORS_API_TOKEN : ${{ secrets.COLLABORATORS_API_TOKEN }}
43
43
run : cargo make build
44
44
- name : Upload artifact
45
45
uses : actions/upload-artifact@v4
Original file line number Diff line number Diff line change 71
71
npm i
72
72
- name : Build
73
73
env :
74
- GITHUB_API_TOKEN : ${{ secrets.GITHUB_TOKEN }}
74
+ COLLABORATORS_API_TOKEN : ${{ secrets.COLLABORATORS_API_TOKEN }}
75
75
run : cargo make build
76
76
77
77
- name : Deploy
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ pub async fn fetch_contributors() -> Vec<Contributor> {
71
71
headers. append ( "User-Agent" , "RustLangES Automation Agent" . parse ( ) . unwrap ( ) ) ;
72
72
headers. append (
73
73
"Authorization" ,
74
- format ! ( "Bearer {}" , env!( "GITHUB_API_TOKEN " ) )
74
+ format ! ( "Bearer {}" , env!( "COLLABORATORS_API_TOKEN " ) )
75
75
. parse ( )
76
76
. unwrap ( ) ,
77
77
) ;
You can’t perform that action at this time.
0 commit comments