Skip to content

Commit

Permalink
fix: run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
AhmedHalat committed Sep 11, 2024
1 parent 99d5d71 commit ea3b3d9
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 29 deletions.
2 changes: 2 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,15 @@
Include a summary of the changes and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change.

**Change**:

- [ ] Feature
- [ ] Bug Fix
- [ ] Refactor
- [ ] Documentation changes
- [ ] Other (provide details):

**Version**:

- [ ] Major (breaking changes that require updates in multiple areas)
- [ ] Minor (new features or enhancements that are backward-compatible)
- [ ] Patch (bug fixes or small updates that do not alter any existing features)
Expand Down
46 changes: 23 additions & 23 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -1,55 +1,55 @@
autolabeler:
- label: 'patch'
- label: "patch"
body:
- '/\[x] Patch/gm'
- label: 'minor'
- label: "minor"
body:
- '/\[x] Minor/gm'
- label: 'major'
- label: "major"
body:
- '/\[x] Major/gm'
- label: 'bugfix'
- label: "bugfix"
body:
- '/\[x] Bug Fix/gm'
- label: 'documentation'
- label: "documentation"
body:
- '/\[x] Documentation/gm'
- label: 'feature'
- label: "feature"
body:
- '/\[x] Feature/gm'
- label: 'enhancement'
- label: "enhancement"
body:
- '/\[x] New Component/gm'

version-resolver:
major:
labels:
- 'major'
- "major"
minor:
labels:
- 'minor'
- "minor"
patch:
labels:
- 'patch'
- "patch"
default: patch

name-template: 'v$RESOLVED_VERSION'
tag-template: '$RESOLVED_VERSION'
name-template: "v$RESOLVED_VERSION"
tag-template: "$RESOLVED_VERSION"
categories:
- title: 'Features'
- title: "Features"
labels:
- 'feature'
- 'enhancement'
- title: 'Bug Fixes'
- "feature"
- "enhancement"
- title: "Bug Fixes"
labels:
- 'fix'
- 'bugfix'
- 'bug'
- title: 'Maintenance'
label: 'chore'
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
- "fix"
- "bugfix"
- "bug"
- title: "Maintenance"
label: "chore"
change-template: "- $TITLE @$AUTHOR (#$NUMBER)"
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.
template: |
## Changes
$CHANGES
$CHANGES
2 changes: 1 addition & 1 deletion .github/workflows/npm-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: Create npm registry release
on:
push:
tags:
- 'v*.*.*'
- "v*.*.*"

jobs:
bump-package-json-release:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pr-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ name: Check PR labels

on:
pull_request:
types: [opened, labeled, unlabeled]
types: [opened, labeled, unlabeled]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: jesusvasquez333/[email protected]
with:
github-token: '${{ secrets.GITHUB_TOKEN }}'
valid-labels: 'major, minor, patch'
invalid-labels: 'hold'
github-token: "${{ secrets.GITHUB_TOKEN }}"
valid-labels: "major, minor, patch"
invalid-labels: "hold"
2 changes: 1 addition & 1 deletion .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ jobs:
steps:
- uses: release-drafter/release-drafter@v6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit ea3b3d9

Please sign in to comment.