1.2.0#14
Merged
pauldambra merged 1 commit intomainfrom Apr 26, 2026
Merged
Conversation
pauldambra
added a commit
to PostHog/posthog
that referenced
this pull request
Apr 26, 2026
…tion v1.2.0 Bumps `PostHog/posthog-github-action` from v1.1.1 / v1.0.1 to v1.2.0 (SHA `58dea254`). The new release auto-includes `actor_type` (`"bot"` | `"human"` | `"unknown"`) on every event the action emits, classified from `github.actor`: - `"bot"` if the actor login ends in `[bot]` (catches dependabot, renovate, github-actions, posthog, etc. — any GitHub App) - `"bot"` if the login matches a known-bots allowlist (currently just `Copilot`) - `"human"` otherwise This is the original goal of this PR — slice CI dashboards by bot vs. human-driven runs — done with zero per-workflow plumbing. Upstream changes (already merged + released): - PostHog/posthog-github-action#13 (the feature) - PostHog/posthog-github-action#14 (1.2.0 release) Downstream consumers will see `actor` and `actor_type` properties on every event from this action automatically. Generated-By: PostHog Code Task-Id: 1bd4387c-09c0-4bac-ad89-29fef1f0260b
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Bumps
package.jsonto1.2.0to release the changes accumulated sincev1.1.1:feat: auto-include actor_type in github context(feat: auto-include actor_type in github context #13) — new propertychore: update to node 24 and bump action versions to latest(chore: update to node 24 and bump action versions to latest #10)build(deps): bump axios from 1.13.2 to 1.13.5(build(deps): bump axios from 1.13.2 to 1.13.5 #9)Minor version bump because
actor_typeis additive (consumers who don't read it are unaffected).After merge
Per the release section of the README:
git checkout main && git pull git tag v1.2.0 git push origin v1.2.0The release workflow (
release.yml) will then create the GitHub Release and update thev1major-version tag automatically.Created with PostHog Code