Skip to content

Commit fa97be6

Browse files
committed
Provide default credentials for srvrco (temporary)
Use hard-coded default credentials for srvrco when GitHub secrets are not installed. This is a security issue for srvrco, but a fix seems to be difficult.
1 parent 6da313c commit fa97be6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/run-tests-staging-duckdns.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
branches:
1313
- master
1414
env:
15-
DUCKDNS_TOKEN: ${{ secrets.DUCKDNS_TOKEN }}
15+
DUCKDNS_TOKEN: ${{ secrets.DUCKDNS_TOKEN == '' && '1d616aa9-b8e4-4bb4-b312-3289de82badb' || secrets.DUCKDNS_TOKEN }}
1616
jobs:
1717
test-centos7-duckdns:
1818
runs-on: ubuntu-latest

.github/workflows/run-tests-staging-dynu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
branches:
1313
- master
1414
env:
15-
DYNU_API_KEY: ${{ secrets.DYNU_API_KEY }}
15+
DYNU_API_KEY: ${{ secrets.DYNU_API_KEY == '' && '65cXefd35XbYf36546eg5dYcZT6X52Y2' || secrets.DYNU_API_KEY }}
1616
jobs:
1717
test-centos7-dynu:
1818
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)