Skip to content

Commit

Permalink
style(yaml): Remove quotations
Browse files Browse the repository at this point in the history
YAML doesn't need to quote strings.
  • Loading branch information
5ouma committed Jul 11, 2024
1 parent a1dfd7e commit 95c0d92
Show file tree
Hide file tree
Showing 11 changed files with 57 additions and 57 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/1-feature-request.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: 🎉 Feature Request
description: Request a new feature or enhancement to an existing feature
labels: ["🎉 New Feature"]
labels: [🎉 New Feature]
body:
- type: textarea
id: feature-description
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/2-bug-report.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: 🧰 Bug Report
description: Something doesn't work
labels: ["🧰 Bug"]
labels: [🧰 Bug]
body:
- type: textarea
id: bug-description
Expand Down
2 changes: 1 addition & 1 deletion .github/auto_assign.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
addReviewers: true
addAssignees: author
reviewers: ["5ouma"]
reviewers: [5ouma]
4 changes: 2 additions & 2 deletions .github/branch-switcher.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
preferredBranch: "dev"
exclude: [branch: "dev"]
preferredBranch: dev
exclude: [branch: dev]
2 changes: 1 addition & 1 deletion .github/delete-merged-branch-config.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
exclude: ["dev"]
exclude: [dev]
delete_closed_pr: true
8 changes: 4 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
- package-ecosystem: github-actions
directory: /
schedule:
interval: "daily"
target-branch: "dev"
interval: daily
target-branch: dev
labels: []
28 changes: 14 additions & 14 deletions .github/pr-labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,28 +4,28 @@ searchBody: true

customLabels:
- text: "- [x] 🎉 New Feature"
label: "🎉 New Feature"
label: 🎉 New Feature
- text: "- [x] 🧰 Bug"
label: "🧰 Bug"
label: 🧰 Bug
- text: "- [x] 🛡️ Security"
label: "🛡️ Security"
label: 🛡️ Security
- text: "- [x] 📖 Documentation"
label: "📖 Documentation"
label: 📖 Documentation
- text: "- [x] 🏎️ Performance"
label: "🏎️ Performance"
label: 🏎️ Performance
- text: "- [x] 🧹 Refactoring"
label: "🧹 Refactoring"
label: 🧹 Refactoring
- text: "- [x] 🧪 Testing"
label: "🧪 Testing"
label: 🧪 Testing
- text: "- [x] 🔧 Maintenance"
label: "🔧 Maintenance"
label: 🔧 Maintenance
- text: "- [x] 🎽 CI"
label: "🎽 CI"
label: 🎽 CI
- text: "- [x] ⛓️ Dependencies"
label: "⛓️ Dependencies"
label: ⛓️ Dependencies
- text: "chore(deps): "
label: "⛓️ Dependencies"
label: ⛓️ Dependencies
- text: "- [x] 🧠 Meta"
label: "🧠 Meta"
- text: "Release v"
label: "🚀 Release"
label: 🧠 Meta
- text: Release v
label: 🚀 Release
50 changes: 25 additions & 25 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
changelog:
exclude:
labels:
- "🧠 Meta"
- "🚀 Release"
- 🧠 Meta
- 🚀 Release

categories:
- title: "🧨 Breaking Changes"
labels: ["🧨 Breaking Change"]
- title: "🎉 New Features"
labels: ["🎉 New Feature"]
- title: "🧰 Bug Fixes"
labels: ["🧰 Bug"]
- title: "🛡️ Security Fixes"
labels: ["🛡️ Security"]
- title: "📖 Documentation Changes"
labels: ["📖 Documentation"]
- title: "🏎️ Performance Improvements"
labels: ["🏎️ Performance"]
- title: "🧹 Refactoring"
labels: ["🧹 Refactoring"]
- title: "🧪 Testing"
labels: ["🧪 Testing"]
- title: "🔧 Maintenance"
labels: ["🔧 Maintenance"]
- title: "🎽 CI"
labels: ["🎽 CI"]
- title: "⛓️ Dependency Updates"
labels: ["⛓️ Dependencies", "dependencies"]
- title: "🔍 Other Changes"
- title: 🧨 Breaking Changes
labels: [🧨 Breaking Change]
- title: 🎉 New Features
labels: [🎉 New Feature]
- title: 🧰 Bug Fixes
labels: [🧰 Bug]
- title: 🛡️ Security Fixes
labels: [🛡️ Security]
- title: 📖 Documentation Changes
labels: [📖 Documentation]
- title: 🏎️ Performance Improvements
labels: [🏎️ Performance]
- title: 🧹 Refactoring
labels: [🧹 Refactoring]
- title: 🧪 Testing
labels: [🧪 Testing]
- title: 🔧 Maintenance
labels: [🔧 Maintenance]
- title: 🎽 CI
labels: [🎽 CI]
- title: ⛓️ Dependency Updates
labels: [⛓️ Dependencies, dependencies]
- title: 🔍 Other Changes
labels: ["*"]
2 changes: 1 addition & 1 deletion .github/workflows/deps-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: 🤖 Dependencies Update

on:
schedule:
- cron: "0 0 * * *"
- cron: 0 0 * * *
workflow_dispatch:

permissions:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ on:
- dev
paths:
- "**.ts"
- "deno.lock"
- ".github/workflows/test.yml"
- deno.lock
- .github/workflows/test.yml
pull_request:
paths:
- "**.ts"
- "deno.lock"
- ".github/workflows/test.yml"
- deno.lock
- .github/workflows/test.yml

jobs:
Test:
Expand Down
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ci:
chore(fix): Auto fixes from pre-commit.com hooks
For more information, see https://pre-commit.ci.
autoupdate_branch: "dev"
autoupdate_branch: dev
autoupdate_commit_msg: "chore(deps): Bump pre-commit hook"

repos:
Expand Down Expand Up @@ -41,10 +41,10 @@ repos:
rev: v0.41.0
hooks:
- id: markdownlint-fix
args: ["--disable", "MD013", "MD023", "MD024", "MD033", "MD036"]
args: [--disable, MD013, MD023, MD024, MD033, MD036]

- repo: https://github.com/koalaman/shellcheck-precommit
rev: v0.10.0
hooks:
- id: shellcheck
args: ["-e", "SC1071,SC1072,SC1073,SC1090,SC1091,SC2015,SC2148,SC2154"]
args: [-e, "SC1071,SC1072,SC1073,SC1090,SC1091,SC2015,SC2148,SC2154"]

0 comments on commit 95c0d92

Please sign in to comment.