Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/auto-approve.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Auto approve

on:
pull_request:
types: [opened, edited]
types: [opened, edited, synchronize]

jobs:
auto-approve:
Expand All @@ -11,9 +11,9 @@ jobs:
pull-requests: write
contents: read
steps:
- name: Auto approve if title starts with "chore:", "docs:", "revert:" or "test:"
if: startsWith(github.event.pull_request.title, 'chore:') ||
startsWith(github.event.pull_request.title, 'docs:') ||
startsWith(github.event.pull_request.title, 'revert:') ||
startsWith(github.event.pull_request.title, 'test:')
uses: hmarr/auto-approve-action@a29f8bd391979575ad1a9e1669325153e9a43f74 # v4
- name: Auto approve if title contains "chore" or "docs" or "revert" or "test"
if: contains(github.event.pull_request.title, 'chore') ||
contains(github.event.pull_request.title, 'docs') ||
contains(github.event.pull_request.title, 'revert') ||
contains(github.event.pull_request.title, 'test')
uses: hmarr/auto-approve-action@v4
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ logs/*
# OMC state
.omc/

# Serena MCP server files
.serena/
.mcp.json
tslint.json

### Local docs (not tracked) ###
.omc/

# Python
__pycache__/
*.pyc
Expand Down
2 changes: 0 additions & 2 deletions .serena/.gitignore

This file was deleted.

130 changes: 0 additions & 130 deletions .serena/project.yml

This file was deleted.