Skip to content

Commit

Permalink
fix: formatting to trigger some testing
Browse files Browse the repository at this point in the history
  • Loading branch information
biodrone committed Mar 27, 2024
1 parent 169cf0b commit d59b9ab
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/deploy_master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: "Dockerhub Build - Master"

on:
push:
branches: [ master ]
branches: [master]

jobs:
Changelog_Release:
Expand All @@ -11,10 +11,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: '16'
node-version: "16"
check-latest: true

- name: Install Changelog NPM Package
Expand All @@ -25,14 +25,14 @@ jobs:
id: changelog
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
git-message: 'chore(release)🤖: {version} [skip ci]'
git-message: "chore(release)🤖: {version} [skip ci]"
output-file: "CHANGELOG.md"
tag-prefix: 'v'
fallback-version: '2.1.1'
tag-prefix: "v"
fallback-version: "2.1.1"
release-count: 0 # preserve all versions in changelog
version-file: pyproject.toml
version-path: tool.poetry.version
config-file-path: './.changelog.config.js'
config-file-path: "./.changelog.config.js"
skip-on-empty: false # otherwise we don't publish fixes

- name: Create Release
Expand All @@ -59,7 +59,7 @@ jobs:
with:
fetch-depth: 0

- name: 'Get Tag'
- name: "Get Tag"
id: tag
uses: "WyriHaximus/github-action-get-previous-tag@v1"
with:
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
with:
image: dangeroustech/streamdl:${{ matrix.component }}_stable
args: --severity-threshold=high --file=Dockerfile.${{ matrix.component }}

- name: Upload result to GitHub Code Scanning
uses: github/codeql-action/upload-sarif@v3
continue-on-error: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: "Pull Request Tests"

on:
pull_request:
branches: [ master, staging ]
branches: [master, staging]

jobs:
Software_Tests:
Expand Down

0 comments on commit d59b9ab

Please sign in to comment.