mirror of
https://github.com/nikdoof/smsbot.git
synced 2025-12-13 18:12:15 +00:00
Compare commits
18 Commits
smsbot-hel
...
smsbot-hel
| Author | SHA1 | Date | |
|---|---|---|---|
|
90fc864be4
|
|||
|
3bf3823b77
|
|||
|
8c91dacc7e
|
|||
|
4bdf3e0f63
|
|||
| 24f72ade72 | |||
| 852a684d4e | |||
| 41bc52d046 | |||
|
|
90b5fa0621 | ||
|
|
f2fec6b5b6 | ||
| c7f7ef3fda | |||
| cdff8dab7b | |||
|
|
98aacb8093 | ||
| b30fa38e41 | |||
| c51ba0e0ae | |||
|
|
692a7eab37 | ||
|
|
5d7db991e6 | ||
|
|
30835e4a6f | ||
|
|
3b55f71db6 |
2
.github/workflows/build-container.yaml
vendored
2
.github/workflows/build-container.yaml
vendored
@@ -24,7 +24,7 @@ jobs:
|
|||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
- name: Build and push
|
- name: Build and push
|
||||||
id: docker_build
|
id: docker_build
|
||||||
uses: docker/build-push-action@v3
|
uses: docker/build-push-action@v4
|
||||||
with:
|
with:
|
||||||
push: true
|
push: true
|
||||||
tags: |
|
tags: |
|
||||||
|
|||||||
2
.github/workflows/lint.yaml
vendored
2
.github/workflows/lint.yaml
vendored
@@ -18,4 +18,4 @@ jobs:
|
|||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: wemake-python-styleguide
|
- name: wemake-python-styleguide
|
||||||
uses: wemake-services/wemake-python-styleguide@0.16.1
|
uses: wemake-services/wemake-python-styleguide@0.17.0
|
||||||
|
|||||||
4
.github/workflows/release-chart.yaml
vendored
4
.github/workflows/release-chart.yaml
vendored
@@ -21,12 +21,12 @@ jobs:
|
|||||||
git config user.name "$GITHUB_ACTOR"
|
git config user.name "$GITHUB_ACTOR"
|
||||||
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
|
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
|
||||||
- name: Install Helm
|
- name: Install Helm
|
||||||
uses: azure/setup-helm@v1
|
uses: azure/setup-helm@v3
|
||||||
with:
|
with:
|
||||||
version: v3.6.3
|
version: v3.6.3
|
||||||
|
|
||||||
- name: Run chart-releaser
|
- name: Run chart-releaser
|
||||||
uses: helm/chart-releaser-action@v1.4.0
|
uses: helm/chart-releaser-action@v1.5.0
|
||||||
env:
|
env:
|
||||||
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
||||||
CR_RELEASE_NAME_TEMPLATE: "smsbot-helm-chart-{{ .Version }}"
|
CR_RELEASE_NAME_TEMPLATE: "smsbot-helm-chart-{{ .Version }}"
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
FROM python:3.10-alpine
|
FROM python:3.11-alpine
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY . /app
|
COPY . /app
|
||||||
RUN pip install .
|
RUN pip install .
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
appVersion: 0.0.3
|
appVersion: 0.0.4
|
||||||
description: A simple Telegram bot to receive SMS messages.
|
description: A simple Telegram bot to receive SMS messages.
|
||||||
name: smsbot
|
name: smsbot
|
||||||
version: 0.0.4
|
version: 0.0.5
|
||||||
kubeVersion: ">=1.19.0-0"
|
kubeVersion: ">=1.19.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- smsbot
|
- smsbot
|
||||||
@@ -15,4 +15,4 @@ maintainers:
|
|||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 4.4.2
|
version: 4.5.2
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ image:
|
|||||||
# -- image pull policy
|
# -- image pull policy
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
# -- image tag
|
# -- image tag
|
||||||
tag: 0.0.3
|
tag: 0.0.4
|
||||||
|
|
||||||
# -- environment variables.
|
# -- environment variables.
|
||||||
# @default -- See below
|
# @default -- See below
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[metadata]
|
[metadata]
|
||||||
name = smsbot
|
name = smsbot
|
||||||
version = 0.0.3
|
version = 0.0.4
|
||||||
description = A simple Telegram bot to receive SMS messages.
|
description = A simple Telegram bot to receive SMS messages.
|
||||||
long_description = file: README.md, LICENSE
|
long_description = file: README.md, LICENSE
|
||||||
license = MIT
|
license = MIT
|
||||||
@@ -9,7 +9,7 @@ classifiers =
|
|||||||
Framework :: Flask
|
Framework :: Flask
|
||||||
License :: OSI Approved :: MIT License
|
License :: OSI Approved :: MIT License
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.11
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
zip_safe = False
|
zip_safe = False
|
||||||
@@ -19,7 +19,7 @@ install_requires =
|
|||||||
flask
|
flask
|
||||||
waitress
|
waitress
|
||||||
twilio
|
twilio
|
||||||
python-telegram-bot
|
python-telegram-bot<=14
|
||||||
prometheus_client
|
prometheus_client
|
||||||
|
|
||||||
[options.entry_points]
|
[options.entry_points]
|
||||||
|
|||||||
Reference in New Issue
Block a user