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
4 changes: 4 additions & 0 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ on:
branches:
- 'dev'

permissions:
contents: write
pull-requests: write

jobs:
prettier:
runs-on: ubuntu-latest
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/pre-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
paths:
- 'src/**'

permissions:
contents: read

jobs:
prettier-check:
runs-on: ubuntu-latest
Expand All @@ -28,6 +31,9 @@ jobs:
test:
runs-on: ubuntu-latest
needs: prettier-check
permissions:
contents: read
actions: write # For uploading artifacts
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
paths:
- 'src/**'

permissions:
contents: read

jobs:
publish:
runs-on: ubuntu-latest
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,3 +153,16 @@ This file is written automatically by the [version bump script](version-bump.ts)
### Documentation

- Added instructions for testing Evergit as a global command.

## [0.3.1] - 2025-06-26

![Increment](https://img.shields.io/badge/patch-purple)

## Changelog Summary

- **GitHub Actions Workflow Enhancements**

- Updated workflows to include explicit permissions for improved security and clarity.

- **Commit Message Sanitizer Fix**
- Escaped backslashes before double quotes to ensure correct processing of commit messages.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# EverGit

![Version](https://img.shields.io/badge/version-0.3.0-blue)
![Version](https://img.shields.io/badge/version-0.3.1-blue)

![TypeScript](https://img.shields.io/badge/typescript-007ACC?style=for-the-badge&logo=typescript&logoColor=white)
![OpenAI](https://img.shields.io/badge/OpenAI-00A79D?style=for-the-badge&logo=openai&logoColor=white)
Expand Down
Loading