Skip to content

Commit

Permalink
Format code
Browse files Browse the repository at this point in the history
  • Loading branch information
sgobotta committed Dec 24, 2024
1 parent 5c82dc4 commit b1c1529
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion .github/actions/dev/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ runs:
- name: Setup nodejs
uses: actions/setup-node@v4
with:
node-version: '20.x'
node-version: "20.x"

# Print version names ------------------------------------------------------
- name: Output Node version
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/prod/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ runs:
- name: Setup nodejs
uses: actions/setup-node@v4
with:
node-version: '20.x'
node-version: "20.x"

# Print version names ------------------------------------------------------
- name: Output Node version
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ runs:
- name: Setup nodejs
uses: actions/setup-node@v4
with:
node-version: '20.x'
node-version: "20.x"

# Print version names ------------------------------------------------------
- name: Output Node version
Expand Down
32 changes: 16 additions & 16 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
name-template: 'v$RESOLVED_VERSION 🌈'
tag-template: 'v$RESOLVED_VERSION'
name-template: "v$RESOLVED_VERSION 🌈"
tag-template: "v$RESOLVED_VERSION"
categories:
- title: '🚀 Features'
- title: "🚀 Features"
labels:
- 'feature'
- 'enhancement'
- title: '🐛 Bug Fixes'
- "feature"
- "enhancement"
- title: "🐛 Bug Fixes"
labels:
- 'fix'
- 'bugfix'
- 'bug'
- title: '🧰 Maintenance'
- "fix"
- "bugfix"
- "bug"
- title: "🧰 Maintenance"
labels:
- 'chore'
- 'scaffolding'
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
- "chore"
- "scaffolding"
change-template: "- $TITLE @$AUTHOR (#$NUMBER)"
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.
version-resolver:
major:
labels:
- 'major'
- "major"
minor:
labels:
- 'minor'
- "minor"
patch:
labels:
- 'patch'
- "patch"
default: patch
template: |
## Changes
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/cd-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
workflow_run:
workflows: ["CI"]
branches: [dev]
types:
types:
- completed

jobs:
Expand All @@ -22,12 +22,12 @@ jobs:
uses: dokku/github-action@master
with:
# specify the `main` branch as the remote branch to push to
branch: 'main'
branch: "main"
git_remote_url: ${{ secrets.SSH_REMOTE_DEV_URL }}
ssh_private_key: ${{ secrets.SSH_PRIVATE_KEY }}

on-failure:
runs-on: ubuntu-20.04
if: ${{ github.event.workflow_run.conclusion == 'failure' }}
steps:
- run: echo 'The triggering workflow failed'
- run: echo 'The triggering workflow failed'
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ on:
- "*"
# This action is not triggered when markdown files are modified.
paths-ignore:
- '**.md'
- "**.md"
pull_request:
branches:
- "*"
# This action is not triggered when markdown files are modified.
paths-ignore:
- '**.md'
- "**.md"

jobs:
dev:
Expand Down

0 comments on commit b1c1529

Please sign in to comment.