feat(archive): filter out banned/redirected subjects, persons and characters #2192
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 | |
| env: | |
| GOTOOLCHAIN: "local" | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6.0.2 | |
| with: | |
| submodules: true | |
| - name: Install Node LTS | |
| uses: actions/setup-node@v6.4.0 | |
| with: | |
| cache: yarn | |
| - name: Install Go | |
| uses: actions/setup-go@v6.4.0 | |
| with: | |
| go-version-file: "go.mod" | |
| - run: yarn install --frozen-lockfile | |
| - run: yarn run format | |
| - run: gofmt -w -s . | |
| - uses: autofix-ci/action@v1.3.4 |