├── .github └── workflows │ ├── integration.yml │ └── lint.yml ├── CONTRIBUTORS.md ├── INSTALL ├── LICENSE ├── README.md ├── plugins ├── fake-bot-after.conf ├── fake-bot-before.conf ├── fake-bot-config.conf └── fake-bot.lua ├── renovate.json ├── tests └── regression │ └── fake-bot-plugin │ └── 9504120.yaml └── util └── fake-bot-report.sh /.github/workflows/integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreruleset/fake-bot-plugin/HEAD/.github/workflows/integration.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreruleset/fake-bot-plugin/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreruleset/fake-bot-plugin/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- 1 | See README.md. 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreruleset/fake-bot-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreruleset/fake-bot-plugin/HEAD/README.md -------------------------------------------------------------------------------- /plugins/fake-bot-after.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreruleset/fake-bot-plugin/HEAD/plugins/fake-bot-after.conf -------------------------------------------------------------------------------- /plugins/fake-bot-before.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreruleset/fake-bot-plugin/HEAD/plugins/fake-bot-before.conf -------------------------------------------------------------------------------- /plugins/fake-bot-config.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreruleset/fake-bot-plugin/HEAD/plugins/fake-bot-config.conf -------------------------------------------------------------------------------- /plugins/fake-bot.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreruleset/fake-bot-plugin/HEAD/plugins/fake-bot.lua -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreruleset/fake-bot-plugin/HEAD/renovate.json -------------------------------------------------------------------------------- /tests/regression/fake-bot-plugin/9504120.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreruleset/fake-bot-plugin/HEAD/tests/regression/fake-bot-plugin/9504120.yaml -------------------------------------------------------------------------------- /util/fake-bot-report.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreruleset/fake-bot-plugin/HEAD/util/fake-bot-report.sh --------------------------------------------------------------------------------