Fix error message and remove unreachable code #177
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly> | |
# SPDX-License-Identifier: MIT | |
name: Sync Assets to ci-sandbox | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
sync: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: sync CI configs | |
uses: at-wat/assets-sync-action@v0 | |
with: | |
repos: pion/ci-sandbox | |
root_dir: ci | |
rm: | | |
.github/hooks/* | |
.github/workflows/renovate-go-mod-fix.yaml | |
.github/lint-*.sh | |
git_user: Pion Bot | |
git_email: [email protected] | |
github_token: ${{ secrets.PIONBOT_ASSETS_SYNC_TOKEN }} | |
force_push: true | |
commit_message: | | |
Update CI configs to %v | |
Update lint scripts and CI configs. |