feat: add channel subject topics API, read trending topics from cache #1148
Workflow file for this run
This file contains hidden or 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
| name: autofix.ci | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| permissions: | |
| contents: read | |
| jobs: | |
| autofix: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v7.0.1 | |
| with: | |
| submodules: 'true' | |
| - uses: actions-rust-lang/setup-rust-toolchain@v1.17.0 | |
| with: | |
| components: rustfmt,clippy | |
| - run: cargo fmt || true | |
| - uses: ./.github/actions/setup-js-env | |
| - run: pnpm run generate:pb || true | |
| - run: pnpm run format || true | |
| - uses: autofix-ci/action@v1.3.4 |