Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jitsucom/github-workflows
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: feat/slack-bot-thread
Choose a base ref
...
head repository: jitsucom/github-workflows
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 11 commits
  • 5 files changed
  • 4 contributors

Commits on May 11, 2026

  1. Merge pull request #6 from jitsucom/feat/slack-bot-thread

    feat(slack-notify): add bot-token path with thread + update support
    vklimontovich authored May 11, 2026
    Configuration menu
    Copy the full SHA
    e6d052a View commit details
    Browse the repository at this point in the history

Commits on May 12, 2026

  1. feat(slack-notify): skip blocks with empty value

    Lets callers conditionally include rows by resolving the value
    expression to '' rather than constructing the YAML in a shell step.
    vklimontovich committed May 12, 2026
    1 Configuration menu
    Copy the full SHA
    81e2ad0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7ba14f9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    498d113 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c02090c View commit details
    Browse the repository at this point in the history

Commits on May 13, 2026

  1. chore: add MIT LICENSE

    This repo is public and intended to be reusable across jitsucom repos.
    Without a LICENSE file it sits under default copyright (no grant), which
    is inconsistent with that intent. MIT matches the rest of jitsucom's
    permissive-licensed public repos.
    vklimontovich committed May 13, 2026
    Configuration menu
    Copy the full SHA
    5ba4090 View commit details
    Browse the repository at this point in the history

Commits on May 22, 2026

  1. fix(ai-review): only request changes for critical findings

    Raise the bar for the REQUEST_CHANGES verdict so it fires only on new,
    critical issues — real bugs, security holes, data loss, user-visible
    regressions. Non-critical and uncertain findings now post as COMMENT
    inline comments instead, so false positives no longer block PRs.
    vklimontovich committed May 22, 2026
    Configuration menu
    Copy the full SHA
    77baf43 View commit details
    Browse the repository at this point in the history

Commits on May 27, 2026

  1. fix(ai-review): never request changes, only comment or approve

    Drop REQUEST_CHANGES from the PR review verdict — branch protection now
    gates merges by requiring all review threads to be resolved, so a COMMENT
    is enough to make the author address a finding without the AI blocking
    the merge itself.
    vklimontovich committed May 27, 2026
    1 Configuration menu
    Copy the full SHA
    816762d View commit details
    Browse the repository at this point in the history
  2. docs(contributing): clarify merge policy

    "Avoid merge commits" meant don't merge default branch into feature
    branches — always rebase. For PRs, merge commit is now the default
    merge method and rebase-and-merge is also allowed. Squash stays off.
    vklimontovich committed May 27, 2026
    1 Configuration menu
    Copy the full SHA
    c64370d View commit details
    Browse the repository at this point in the history

Commits on May 29, 2026

  1. fix(ai-review): always approve PRs, surface findings as comments

    Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
    vklimontovich and claude committed May 29, 2026
    1 Configuration menu
    Copy the full SHA
    2cf7200 View commit details
    Browse the repository at this point in the history

Commits on Jun 22, 2026

  1. fix(ai-review): allow github-actions[bot] PRs to be reviewed

    codex-action's write-access check queries the collaborators API, which
    returns permission 'none' for the github-actions[bot] actor and aborts
    the run with "Actor 'github-actions[bot]' is not permitted to run this
    action". This blocked AI review on the automated security-fix PRs, which
    are opened under the repo's own GITHUB_TOKEN (actor github-actions[bot]).
    
    Pass allow-bots: true so codex-action whitelists the GitHub-owned
    github-actions[bot] specifically. The review still posts via the
    AI_CODE_REVIEW app token, which already has PR write — the actor check
    was the only gate.
    
    Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
    absorbb and claude committed Jun 22, 2026
    1 Configuration menu
    Copy the full SHA
    cf7566e View commit details
    Browse the repository at this point in the history
Loading