プラグインのリンティングワークフローに関する問題

Robocop とリンティングで問題が発生しましたか?

私のワークフローには、主に以下の場所からコピーしたものが含まれています。

name: Discourse Plugin

on:
  push:
    branches:
      - main
      - master

  schedule:
      - cron: 22 05 * * *

  jobs:
    ci:
      uses: discourse/.github/.github/workflows/discourse-plugin.yml@v1

そして、私のジョブは次のように失敗しています。

Run bundle exec rubocop .
vendor/bundle/ruby/3.1.0/gems/rubocop-discourse-3.3.0/rubocop-rspec.yml: RSpec/FactoryBot/AttributeDefinedStatically has the wrong namespace - should be FactoryBot
vendor/bundle/ruby/3.1.0/gems/rubocop-discourse-3.3.0/rubocop-rspec.yml: RSpec/FactoryBot/CreateList has the wrong namespace - should be FactoryBot
vendor/bundle/ruby/3.1.0/gems/rubocop-discourse-3.3.0/rubocop-rspec.yml: RSpec/FactoryBot/FactoryClassName has the wrong namespace - should be FactoryBot
Error: The `RSpec/FilePath` cop has been split into `RSpec/SpecFilePathFormat` and `RSpec/SpecFilePathSuffix`.
(obsolete configuration found in vendor/bundle/ruby/3.1.0/gems/rubocop-discourse-3.3.0/rubocop-rspec.yml, please update it)
Error: Process completed with exit code 2.

discourse/.github/.github/workflows/discourse-plugin.yml@v1 がどこにあるのか、何をしているのかを確認できません。

しかし、他のものは失敗していないと思います。スケジュールで実行されているため、機能していないのでしょうか?