Skip to content

Commit

Permalink
fix(pencil): added write permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
Supermanuu committed Aug 9, 2024
1 parent 714171a commit 37d5600
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ on:
jobs:
build:
runs-on: ubuntu-latest
permissions:
repository-projects: write
env:
BRANCH_NAME: ${{ github.head_ref || github.ref_name }} # Branch to merge into main
steps:
Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,13 @@ Another attach has:
## Generate release

To generate a release you will need to create a new `release/*` branch and make a PR from that branch to main. In that scenario, when the PR is closed a job will be launched. That job will generate a tag and a release with all the change information from the previous tag until now, using the commit contents as specified in <https://github.com/marketplace/actions/github-tag>.

### Release changelog management

In order to auto-generate the changelog, the commits shall use this rules:

| Keyword | Example | Increases |
|----------------|--------------------------------------------------------------------|-----------|
| `fix(pencil)` | fix(pencil): stop graphite breaking when too much pressure applied | Patch |
| `feat(pencil)` | feat(pencil): add 'graphiteWidth' option | Minor |
| `perf(pencil)` | perf(pencil): remove graphiteWidth option | Major |

0 comments on commit 37d5600

Please sign in to comment.