Skip to content

Commit 4e6653e

Browse files
committed
ci: 💚 Fixing semantic-release config
- Added config variables in pyproject.toml to replace default behavior - Changed dependabot scheduler frequency
1 parent eb8edbf commit 4e6653e

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

.github/CHANGELOG.md

Whitespace-only changes.

.github/dependabot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ updates:
44
- package-ecosystem: 'github-actions'
55
directory: '/'
66
schedule:
7-
interval: 'weekly'
7+
interval: 'monthly'
88

99
# Maintain dependencies for npm
1010
- package-ecosystem: 'pip'
1111
directory: '/megalist_dataflow'
1212
schedule:
13-
interval: 'weekly'
13+
interval: 'monthly'

.github/workflows/codacy-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# For more information on Codacy Analysis CLI in general, see
77
# https://github.com/codacy/codacy-analysis-cli.
88

9-
name: Codacy
9+
name: Codacy Analysis
1010

1111
on: ['push']
1212

.github/workflows/python-app.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
push:
88
branches: [ develop ]
99
pull_request:
10-
branches: [ main ]
10+
branches: [ main, master ]
1111

1212
jobs:
1313
unit_testing:

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
[tool.semantic_release]
22
upload_to_pypi = false
3+
branch = main
34
version_variable = [
45
'megalist_dataflow/setup.py:__version__'
56
]
6-
7+
version_source = tag
8+
build_command = false

0 commit comments

Comments
 (0)