12 Commits

Author SHA1 Message Date
jcabillot a50210db32 Merge pull request 'chore: remove all pushbullet references' (#11) from chore/remove-pushbullet into master
Docker Build and Push / build (push) Successful in 43s
Reviewed-on: #11
2026-06-11 08:13:19 -04:00
Sagent 4e074608f5 chore: remove all pushbullet references
Docker Build and Push / build (pull_request) Successful in 30s
2026-06-11 12:12:25 +00:00
cloudix_mcp_server 2b5e3ceb63 Merge pull request 'Update dependency xmltodict to v1' (#5) from renovate/xmltodict-1.x into master
Docker Build and Push / build (push) Successful in 1m14s
2026-06-10 19:23:18 -04:00
jcabillot 2a31917f3c Merge pull request 'Migrate Renovate config' (#10) from renovate/migrate-config into master
Reviewed-on: #10
2026-06-09 14:11:57 -04:00
jcabillot 47eb3d7828 Merge pull request 'Update python Docker tag to v3.14' (#9) from renovate/python-3.x into master
Docker Build and Push / build (push) Successful in 1m1s
Reviewed-on: #9
2026-06-09 14:11:32 -04:00
renovate c9561311af Migrate config renovate.json
Docker Build and Push / build (pull_request) Successful in 39s
2026-06-09 18:09:50 +00:00
renovate 4db311b069 Update python Docker tag to v3.14
Docker Build and Push / build (pull_request) Successful in 40s
2026-06-09 18:09:35 +00:00
jcabillot 6cb2925d85 Merge pull request 'chore: improve renovate dependency detection' (#7) from chore/renovate into master
Docker Build and Push / build (push) Successful in 2m32s
Reviewed-on: #7
2026-06-09 14:04:04 -04:00
jcabillot e850e9e502 Merge pull request 'Pin dependencies' (#8) from renovate/pin-dependencies into master
Docker Build and Push / build (push) Successful in 57s
Reviewed-on: #8
2026-06-09 11:59:27 -04:00
renovate 1262b60fca Pin dependencies
Docker Build and Push / build (pull_request) Successful in 33s
2026-06-09 15:51:05 +00:00
Sagent 7e1314b703 chore: improve renovate dependency detection
Docker Build and Push / build (pull_request) Successful in 33s
2026-06-09 12:55:04 +00:00
renovate 3b76ecd5ec Update dependency xmltodict to v1
perso/huawei-3G-SMS-API/pipeline/pr-master This commit looks good
2026-05-27 00:33:01 +00:00
5 changed files with 21 additions and 18 deletions
+5 -5
View File
@@ -13,21 +13,21 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4
- name: Login to Docker Hub
if: github.event_name != 'pull_request'
uses: docker/login-action@v4
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Docker metadata
id: meta
uses: docker/metadata-action@v6
uses: docker/metadata-action@80c7e94dd9b9319bd5eb7a0e0fe9291e23a2a2e9 # v6
with:
images: jcabillot/huawei-3g-sms-api
tags: |
@@ -37,7 +37,7 @@ jobs:
type=raw,value=latest,enable=${{ github.ref == 'refs/heads/master' }}
- name: Build and push
uses: docker/build-push-action@v7
uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf # v7
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
+2 -2
View File
@@ -1,12 +1,12 @@
# syntax=docker.io/docker/dockerfile:1
FROM "python:3.11-alpine" AS pipdependencies
FROM python:3.14-alpine AS pipdependencies
COPY app/requirements.txt /requirements.txt
RUN pip3 install --no-cache-dir --user --requirement requirements.txt
FROM "python:3.11-alpine"
FROM python:3.14-alpine
LABEL maintainer="Cabillot Julien <dockerimages@cabillot.eu>"
# TODO: à tester
+1 -2
View File
@@ -1,2 +1 @@
pushbullet.py==0.11.0
xmltodict==0.12.0
xmltodict==1.0.4
-9
View File
@@ -6,13 +6,8 @@ import xmltodict
import requests
import json
import time
# TODO: disabled api excess
#from pushbullet import Pushbullet
import subprocess
# TODO: disabled api excess
#pb = Pushbullet(os.environ['PB_APIKEY'])
pin = os.environ['PIN']
PIN_ENTER_TEMPLATE = '''<request>
@@ -162,10 +157,6 @@ if __name__ == "__main__":
# Text
f3.write(messages[i] + '\n')
# Pushbullet
print('# Notif pushbullet')
# TODO: disabled api excess
#pb.push_note("SMS", "From: %s\nDate: %s\n%s" % (messagesR[i]['Phone'], messagesR[i]['Date'], messagesR[i]['Content']))
# NTFY
# TODO: exec ntfy publish
+13
View File
@@ -0,0 +1,13 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"customManagers": [
{
"customType": "regex",
"description": "Track ntfy binary in COPY --from",
"managerFilePatterns": ["/^Dockerfile$/"],
"matchStrings": ["COPY --from=binwiederhier/ntfy:(?<currentValue>[^\\s]+)"],
"depNameTemplate": "binwiederhier/ntfy",
"datasourceTemplate": "docker"
}
]
}