Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Takayuki Murooka <[email protected]>
  • Loading branch information
takayuki5168 committed Feb 29, 2024
1 parent a154e68 commit 6088c2a
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/sync-tier4-upstream.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# This workflow is intended for the use in the repositories created by forking tier4/autoware_launch.
name: sync-tier4-upstream

on:
schedule:
- cron: 0 0 * * *
workflow_dispatch:

jobs:
sync-tier4-upstream:
runs-on: ubuntu-latest
steps:
- name: Generate token
id: generate-token
uses: tibdex/github-app-token@v1
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.PRIVATE_KEY }}

- name: Run sync-branches
uses: autowarefoundation/autoware-github-actions/sync-branches@v1
with:
token: ${{ steps.generate-token.outputs.token }}
base-branch: tier4/main
sync-pr-branch: sync-tier4-upstream
sync-target-repository: https://github.com/tier4/autoware_launch.git
sync-target-branch: tier4/main
pr-title: "chore: sync upstream"
pr-labels: |
bot
sync-tier4-upstream
auto-merge-method: merge

0 comments on commit 6088c2a

Please sign in to comment.