Compare commits

..

2 Commits

Author SHA1 Message Date
kelly 8ffb4659f7 migrated api handling to missio for security
Build and Push Docker Image / build (push) Successful in 28s
2026-05-11 17:15:08 -05:00
kelly cc3cac5ee2 updating build to use secret for notification url 2026-05-11 16:52:34 -05:00
5 changed files with 35 additions and 48 deletions
+2 -2
View File
@@ -68,7 +68,7 @@ jobs:
\"title\": \"Gitea Build Succeeded\",
\"body\": \"Repo: ${{ gitea.repository }}\\nBranch: ${{ gitea.ref_name }}\\nImage tag built successfully\"
}" \
http://10.47.0.213:4444/notify/926263506803e21d72e382edd0caf3fb510a9629d860601dfb79506b5758c133
${{ secrets.APPRISE_URL }}
- name: Notify Apprise (failure)
if: failure()
@@ -80,4 +80,4 @@ jobs:
\"title\": \"Gitea Build Failed\",
\"body\": \"Repo: ${{ gitea.repository }}\\nBranch: ${{ gitea.ref_name }}\\nCheck logs in Gitea\"
}" \
http://10.47.0.213:4444/notify/926263506803e21d72e382edd0caf3fb510a9629d860601dfb79506b5758c133
${{ secrets.APPRISE_URL }}
-39
View File
@@ -1,39 +0,0 @@
{
"id": "7214af45-3f3b-4b7b-a9b7-ef6dbca83ab5",
"collectionName": "Donetick API",
"creatredOn": "2026-05-06T22:35:56.440Z",
"folders": [],
"requests": [
{
"id": "2ca9a16c-8b4d-4620-8466-15daa317f7ad",
"collectionId": "7214af45-3f3b-4b7b-a9b7-ef6dbca83ab5",
"containerId": "7214af45-3f3b-4b7b-a9b7-ef6dbca83ab5",
"collectionName": "Donetick API",
"name": "Get Chores",
"url": "https://todo.ktr32.org/eapi/v1/chore",
"method": "GET",
"headers": {
"accept": "*/*",
"user-agent": "https://postmateclient.com",
"secretkey": "78e7fe13c453664e0485c50ae6f2a29748ed750bbd89a7c0f79c7e95ce3b493d"
},
"body": {
"json": {}
},
"tests": [],
"bodyFromat": "json",
"testScript": "",
"bodyFormat": "json",
"preRequestScript": "",
"preRequests": [],
"auth": {
"type": "apikey",
"key": "secretkey",
"value": "{{secretkey}}",
"addTo": "header"
},
"cookies": [],
"dataTags": []
}
]
}
-7
View File
@@ -1,7 +0,0 @@
[
{
"key": "content-type",
"value": "application/json",
"default": false
}
]
+20
View File
@@ -0,0 +1,20 @@
info:
name: Get-Chore
type: http
seq: 1
http:
method: GET
url: "{{baseUrl}}/eapi/v1/chore"
headers: []
params: []
settings:
encodeUrl: true
timeout: 30000
followRedirects: true
maxRedirects: 5
runtime:
auth:
type: apikey
key: secretkey
value: "{{secretkey}}"
placement: header
+13
View File
@@ -0,0 +1,13 @@
opencollection: 1.0.0
info:
name: Donetick
version: 1.0.0
config:
environments:
- name: Production
variables:
- name: baseUrl
value: https://todo.ktr32.org
- name: secretkey
secret: true
items: []