Skip to content
Open
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
15 changes: 6 additions & 9 deletions .github/workflows/semantic-pr.yaml
Original file line number Diff line number Diff line change
@@ -1,24 +1,21 @@
name: Semantic Pull Request
on:
pull_request_target:
pull_request:
types: [opened, reopened, edited, synchronize]
permissions:
pull-requests: read
contents: read # Needed to fetch the .gitattributes file if present
jobs:
main:
name: Validate PR Title
runs-on: ubuntu-latest
runs-on: ubuntu_latest
steps:
# https://github.com/amannn/action-semantic-pull-request/releases/tag/v5.5.3
- uses: amannn/action-semantic-pull-request@0723387faaf9b38adef4775cd42cfd5155ed6017
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: amannn/action-semantic-pull-request@v5.5 # Pinned to minor version
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
subjectPattern: ^(?![A-Z]).+$
subjectPatternError: |
The subject "{subject}" found in the pull request title "{title}"
didn't match the configured pattern. Please ensure that the subject
doesn't start with an uppercase character.
The subject "{subject}" found in the pull request title "{title}" should not start with a capital letter. This is to follow conventional commit style guidelines. Please use lowercase for the first letter of the subject.
types: |
fix
feat
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[![Bolt.new: AI-Powered Full-Stack Web Development in the Browser](./public/social_preview_index.jpg)](https://bolt.new)

# Bolt.new: AI-Powered Full-Stack Web Development in the Browser

# hey this is a test for my pr chnage
Bolt.new is an AI-powered web development agent that allows you to prompt, run, edit, and deploy full-stack applications directly from your browser—no local setup required. If you're here to build your own AI-powered web dev agent using the Bolt open source codebase, [click here to get started!](./CONTRIBUTING.md)

## What Makes Bolt.new Different
Expand Down
Loading