Skip to content

sync-files

sync-files #792

Workflow file for this run

name: sync-files
on:
schedule:
- cron: 0 19 * * * # run at 4 AM JST
workflow_dispatch:
jobs:
sync-files:
runs-on: ubuntu-latest
steps:
- name: Generate token
id: generate-token
uses: tibdex/github-app-token@v2
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.PRIVATE_KEY }}
- name: Run sync-files
uses: autowarefoundation/autoware-github-actions/sync-files@main
with:
token: ${{ steps.generate-token.outputs.token }}