Skip to content
name: sync-awf-latest
on:
schedule:
- cron: 0 15 * * *
workflow_dispatch:
jobs:
sync-awf-latest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Commit Results
- name: Make change to workflow file
GITHUB_TOKEN: ${{ github.token }}

Check failure on line 17 in .github/workflows/sync-awf-latest.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/sync-awf-latest.yaml

Invalid workflow file

You have an error in your yaml syntax on line 17
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git checkout awf-latest-tmp
git remote add awf https://github.com/autowarefoundation/autoware.universe
git fetch awf main
git rebase awf/main
git remote remove origin
git remote add origin [email protected]:tier4/autoware.universe
git push origin awf-latest-tmp --force