Skip to content

Commit

Permalink
Merge 3a9e8b6 into c4a991c
Browse files Browse the repository at this point in the history
  • Loading branch information
arlac77 committed Feb 27, 2024
2 parents c4a991c + 3a9e8b6 commit bf559f3
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ updates:
schedule:
interval: daily
commit-message:
prefix: 'fix(deps):'
prefix-development: 'chore(deps):'
prefix: "fix(deps):"
prefix-development: "chore(deps):"
labels:
- npm dependencies
- package-ecosystem: github-actions
Expand All @@ -18,6 +18,6 @@ updates:
schedule:
interval: daily
commit-message:
prefix: 'chore(action):'
prefix: "chore(action):"
labels:
- dependencies
4 changes: 2 additions & 2 deletions .github/pr_labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ test:
- tests/**/*
documentation:
- docs/**/*
- '**/*.md'
- "**/*.md"
dependencies:
- package-lock.json
- yarn.lockfile
Expand All @@ -29,4 +29,4 @@ vscode:
openapi:
- openapi/*
styling:
- '**/*.css'
- "**/*.css"
2 changes: 1 addition & 1 deletion .github/workflows/auto_approve.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Auto approve
'on': pull_request_target
on: pull_request_target
jobs:
auto-approve:
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: CI
'on':
on:
push:
branches:
- master
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
- run: npm ci
- run: npx semantic-release
env:
CI: 'true'
CI: "true"
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
permissions:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql_analysis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: CodeQL
'on':
on:
push:
branches:
- master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr_labeler.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Pull Request Labeler
'on': pull_request_target
on: pull_request_target
jobs:
triage:
permissions:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update_package_lock.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Update package lock
'on':
on:
schedule:
- cron: 13 8 * * 6
push:
Expand Down Expand Up @@ -33,4 +33,4 @@ jobs:
body: bring lock in sync
branch: package-lock
labels: npm
commit-message: 'chore(deps): lock'
commit-message: "chore(deps): lock"
4 changes: 2 additions & 2 deletions .github/workflows/update_readme_api.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: API to readme
'on':
on:
schedule:
- cron: 31 14 * * 6
push:
Expand All @@ -22,4 +22,4 @@ jobs:
path: README.md
title: Sync API into README
branch: readme-api
commit-message: 'docs(README): sync API'
commit-message: "docs(README): sync API"

0 comments on commit bf559f3

Please sign in to comment.