diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index c6d8c2687d2ac..aaf7daf2e9ca3 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -2,7 +2,7 @@ name: build on: schedule: - - cron: 0 19 * * 0 # run at 4 AM JST on Sundays + - cron: 0 0 * * 0 workflow_dispatch: jobs: diff --git a/.github/workflows/check-missing-packages.yaml b/.github/workflows/check-missing-packages.yaml index e2aefd312227e..2a9b297dfb65e 100644 --- a/.github/workflows/check-missing-packages.yaml +++ b/.github/workflows/check-missing-packages.yaml @@ -2,7 +2,7 @@ name: check-missing-packages on: schedule: - - cron: 0 19 * * 0 # run at 4 AM JST on Sundays + - cron: 0 0 * * 0 workflow_dispatch: jobs: diff --git a/.github/workflows/pre-commit-ansible.yaml b/.github/workflows/pre-commit-ansible.yaml index fd468b183e553..feaef88fe2e44 100644 --- a/.github/workflows/pre-commit-ansible.yaml +++ b/.github/workflows/pre-commit-ansible.yaml @@ -15,6 +15,6 @@ jobs: ansible-galaxy collection install -f -r ansible-galaxy-requirements.yaml - name: Run pre-commit - uses: autowarefoundation/autoware-github-actions/pre-commit@tier4/proposal + uses: autowarefoundation/autoware-github-actions/pre-commit@v1 with: pre-commit-config: .pre-commit-config-ansible.yaml diff --git a/.github/workflows/pre-commit-optional.yaml b/.github/workflows/pre-commit-optional.yaml index 0ccc7e59cb98c..93e05dc2c79e5 100644 --- a/.github/workflows/pre-commit-optional.yaml +++ b/.github/workflows/pre-commit-optional.yaml @@ -11,6 +11,6 @@ jobs: uses: actions/checkout@v3 - name: Run pre-commit - uses: autowarefoundation/autoware-github-actions/pre-commit@tier4/proposal + uses: autowarefoundation/autoware-github-actions/pre-commit@v1 with: pre-commit-config: .pre-commit-config-optional.yaml diff --git a/.github/workflows/pre-commit.yaml b/.github/workflows/pre-commit.yaml index a1fc538110b82..e1b72f706881c 100644 --- a/.github/workflows/pre-commit.yaml +++ b/.github/workflows/pre-commit.yaml @@ -11,6 +11,6 @@ jobs: uses: actions/checkout@v3 - name: Run pre-commit - uses: autowarefoundation/autoware-github-actions/pre-commit@tier4/proposal + uses: autowarefoundation/autoware-github-actions/pre-commit@v1 with: pre-commit-config: .pre-commit-config.yaml diff --git a/.github/workflows/semantic-pull-request.yaml b/.github/workflows/semantic-pull-request.yaml index 0edf1946330d3..71224c224ec0f 100644 --- a/.github/workflows/semantic-pull-request.yaml +++ b/.github/workflows/semantic-pull-request.yaml @@ -9,4 +9,4 @@ on: jobs: semantic-pull-request: - uses: autowarefoundation/autoware-github-actions/.github/workflows/semantic-pull-request.yaml@tier4/proposal + uses: autowarefoundation/autoware-github-actions/.github/workflows/semantic-pull-request.yaml@v1 diff --git a/.github/workflows/spell-check-differential.yaml b/.github/workflows/spell-check-differential.yaml index 8a7b7da4f8f4f..eb18ccdba38d0 100644 --- a/.github/workflows/spell-check-differential.yaml +++ b/.github/workflows/spell-check-differential.yaml @@ -11,6 +11,6 @@ jobs: uses: actions/checkout@v3 - name: Run spell-check - uses: autowarefoundation/autoware-github-actions/spell-check@tier4/proposal + uses: autowarefoundation/autoware-github-actions/spell-check@v1 with: cspell-json-url: https://raw.githubusercontent.com/tier4/autoware-spell-check-dict/main/.cspell.json diff --git a/.github/workflows/sync-files.yaml b/.github/workflows/sync-files.yaml index 0c5b4b04fa084..e0ae296e96792 100644 --- a/.github/workflows/sync-files.yaml +++ b/.github/workflows/sync-files.yaml @@ -2,7 +2,7 @@ name: sync-files on: schedule: - - cron: 0 19 * * * # run at 4 AM JST + - cron: 0 0 * * 0 workflow_dispatch: jobs: @@ -17,6 +17,6 @@ jobs: private_key: ${{ secrets.PRIVATE_KEY }} - name: Run sync-files - uses: autowarefoundation/autoware-github-actions/sync-files@tier4/proposal + uses: autowarefoundation/autoware-github-actions/sync-files@v1 with: token: ${{ steps.generate-token.outputs.token }} diff --git a/.github/workflows/sync-upstream.yaml b/.github/workflows/sync-upstream.yaml index 2b9f339967a8d..9a7c78a202009 100644 --- a/.github/workflows/sync-upstream.yaml +++ b/.github/workflows/sync-upstream.yaml @@ -2,7 +2,7 @@ name: sync-upstream on: schedule: - - cron: 0 19 * * * # run at 4 AM JST + - cron: 0 0 * * 0 workflow_dispatch: jobs: @@ -17,7 +17,7 @@ jobs: private_key: ${{ secrets.PRIVATE_KEY }} - name: Run sync-branches - uses: autowarefoundation/autoware-github-actions/sync-branches@tier4/proposal + uses: autowarefoundation/autoware-github-actions/sync-branches@v1 with: token: ${{ steps.generate-token.outputs.token }} base-branch: tier4/universe diff --git a/.github/workflows/update-beta-branch.yaml b/.github/workflows/update-beta-branch.yaml index b8d7d8891c633..1d0a7f2629876 100644 --- a/.github/workflows/update-beta-branch.yaml +++ b/.github/workflows/update-beta-branch.yaml @@ -2,7 +2,7 @@ name: update beta branch on: schedule: - - cron: "0 19 * * *" # run at 4 AM JST + - cron: 0 0 * * 0 workflow_dispatch: env: diff --git a/.github/workflows/vcs-import.yaml b/.github/workflows/vcs-import.yaml index 8a4dd74ad297c..b3293d4569184 100644 --- a/.github/workflows/vcs-import.yaml +++ b/.github/workflows/vcs-import.yaml @@ -20,7 +20,7 @@ jobs: sudo apt-get -y install python3-pip - name: Register AutonomouStuff repository - uses: autowarefoundation/autoware-github-actions/register-autonomoustuff-repository@tier4/proposal + uses: autowarefoundation/autoware-github-actions/register-autonomoustuff-repository@v1 with: rosdistro: galactic diff --git a/ansible-galaxy-requirements.yaml b/ansible-galaxy-requirements.yaml index 5096a53c00307..9a0071ae92cc4 100644 --- a/ansible-galaxy-requirements.yaml +++ b/ansible-galaxy-requirements.yaml @@ -1,4 +1,4 @@ collections: - name: https://github.com/autowarefoundation/autoware.git#/ansible type: git - version: tier4/proposal + version: main diff --git a/autoware.proj.repos b/autoware.proj.repos index 6716a82d83c23..3319afc8c0b1c 100644 --- a/autoware.proj.repos +++ b/autoware.proj.repos @@ -7,7 +7,7 @@ repositories: autoware/common: type: git url: https://github.com/autowarefoundation/autoware_common.git - version: tier4/proposal + version: main autoware/launcher: type: git url: https://github.com/tier4/autoware_launch.git