From ea72ad66c562b720743ad0b375cc9c8a9c2642db Mon Sep 17 00:00:00 2001 From: MatteoGabriele Date: Fri, 20 Mar 2026 23:47:05 +0100 Subject: [PATCH 1/5] doc: change --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 286305e..cfd7182 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,11 @@ # AgentScan -An open experiment in detecting automation patterns on GitHub. + +An open experiment in detecting automation patterns on GitHub ## Why this? I didn't expect to build this website, but ended up creating it after reading multiple articles and seeing open source maintainers struggling with AI agents targeting their projects. + - https://socket.dev/blog/ai-agent-lands-prs-in-major-oss-projects-targets-maintainers-via-cold-outreach - https://tylur.blog/harmful-prs/ - https://theshamblog.com/an-ai-agent-published-a-hit-piece-on-me/ From c0585e08aa091423aa3c8dc1ffe2b3265eeb975a Mon Sep 17 00:00:00 2001 From: MatteoGabriele Date: Fri, 20 Mar 2026 23:49:06 +0100 Subject: [PATCH 2/5] chore: add token --- .github/workflows/agentscan.yml | 2 ++ README.md | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/agentscan.yml b/.github/workflows/agentscan.yml index c08efdc..e9129d4 100644 --- a/.github/workflows/agentscan.yml +++ b/.github/workflows/agentscan.yml @@ -9,5 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + with: + github-token: ${{ secrets.GITHUB_TOKEN }} - name: AgentScan uses: MatteoGabriele/agentscan-action@v1.0.1 diff --git a/README.md b/README.md index cfd7182..7fa26a8 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # AgentScan -An open experiment in detecting automation patterns on GitHub +An open experiment in detecting automation patterns on GitHub. ## Why this? From 8aa5abd63f03fdc1aa95686faec650fd3759c21b Mon Sep 17 00:00:00 2001 From: MatteoGabriele Date: Fri, 20 Mar 2026 23:51:00 +0100 Subject: [PATCH 3/5] fix: move token --- .github/workflows/agentscan.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/agentscan.yml b/.github/workflows/agentscan.yml index e9129d4..c69cec3 100644 --- a/.github/workflows/agentscan.yml +++ b/.github/workflows/agentscan.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - with: - github-token: ${{ secrets.GITHUB_TOKEN }} - name: AgentScan uses: MatteoGabriele/agentscan-action@v1.0.1 + with: + github-token: ${{ secrets.GITHUB_TOKEN }} From a69f3bb516065fb954320b0ea11e09ebbf62c8b3 Mon Sep 17 00:00:00 2001 From: MatteoGabriele Date: Fri, 20 Mar 2026 23:52:54 +0100 Subject: [PATCH 4/5] fix: permissions --- .github/workflows/agentscan.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/agentscan.yml b/.github/workflows/agentscan.yml index c69cec3..da7702c 100644 --- a/.github/workflows/agentscan.yml +++ b/.github/workflows/agentscan.yml @@ -2,7 +2,11 @@ name: AgentScan on: pull_request: - types: [opened, reopened] + types: [opened, reopened, synchronize] + +permissions: + pull-requests: write + contents: read jobs: agentscan: From 7e5621666a8f6d3e1e8c9f4243adf7a8dfb0f77d Mon Sep 17 00:00:00 2001 From: MatteoGabriele Date: Fri, 20 Mar 2026 23:57:02 +0100 Subject: [PATCH 5/5] chore: remove sync --- .github/workflows/agentscan.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/agentscan.yml b/.github/workflows/agentscan.yml index da7702c..75e210b 100644 --- a/.github/workflows/agentscan.yml +++ b/.github/workflows/agentscan.yml @@ -2,7 +2,7 @@ name: AgentScan on: pull_request: - types: [opened, reopened, synchronize] + types: [opened, reopened] permissions: pull-requests: write