Fix error in yaml formatting for `update-main-source.yml` and `update-main.yml` (#1000)
parent
8fff58e295
commit
d2ad3e4d4b
|
@ -1,7 +1,7 @@
|
||||||
name: Auto-update charts
|
name: Auto-update charts
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch: {}
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '0 0 * * *'
|
- cron: '0 0 * * *'
|
||||||
|
|
||||||
|
@ -25,10 +25,10 @@ jobs:
|
||||||
|
|
||||||
- name: Generate short-lived github app token
|
- name: Generate short-lived github app token
|
||||||
uses: actions/create-github-app-token@v1
|
uses: actions/create-github-app-token@v1
|
||||||
id: app-token
|
id: app-token
|
||||||
with:
|
with:
|
||||||
app-id: ${{ env.APP_ID }}
|
app-id: ${{ env.APP_ID }}
|
||||||
private-key: ${{ env.PRIVATE_KEY }}
|
private-key: ${{ env.PRIVATE_KEY }}
|
||||||
|
|
||||||
- name: Update main-source branch
|
- name: Update main-source branch
|
||||||
env:
|
env:
|
||||||
|
|
|
@ -26,10 +26,10 @@ jobs:
|
||||||
|
|
||||||
- name: Generate short-lived github app token
|
- name: Generate short-lived github app token
|
||||||
uses: actions/create-github-app-token@v1
|
uses: actions/create-github-app-token@v1
|
||||||
id: app-token
|
id: app-token
|
||||||
with:
|
with:
|
||||||
app-id: ${{ env.APP_ID }}
|
app-id: ${{ env.APP_ID }}
|
||||||
private-key: ${{ env.PRIVATE_KEY }}
|
private-key: ${{ env.PRIVATE_KEY }}
|
||||||
|
|
||||||
- name: Update main branch with latest from main-source
|
- name: Update main branch with latest from main-source
|
||||||
env:
|
env:
|
||||||
|
|
Loading…
Reference in New Issue