Skip to content

sync-awf-latest

sync-awf-latest #65

name: sync-awf-latest
on:
schedule:
- cron: 0 15 * * *
workflow_dispatch:
permissions:
actions: write-all

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

GitHub Actions / sync-awf-latest

Invalid workflow file

The workflow is not valid. .github/workflows/sync-awf-latest.yaml (Line: 9, Col: 12): Unexpected value 'write-all'
jobs:
sync-awf-latest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Commit Results
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git checkout awf-latest
git remote add awf https://github.com/autowarefoundation/autoware.universe
git fetch awf main
git rebase awf/main
git push origin awf-latest --force