From 44b25d3c1fc15287fbe56b2b5098e249f64d5c44 Mon Sep 17 00:00:00 2001 From: Takayuki Murooka Date: Thu, 28 Dec 2023 12:46:01 +0900 Subject: [PATCH] feat: add github workflow of create-awf-latest.yml (#1082) Signed-off-by: Takayuki Murooka --- .github/workflows/create-awf-latest.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/create-awf-latest.yml diff --git a/.github/workflows/create-awf-latest.yml b/.github/workflows/create-awf-latest.yml new file mode 100644 index 0000000000000..191b40ee69b05 --- /dev/null +++ b/.github/workflows/create-awf-latest.yml @@ -0,0 +1,25 @@ +name: create-awf-latest + +on: + schedule: + - cron: 0 0 * * * + workflow_dispatch: + +jobs: + create-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