blob: 79c397edc9f79e543f86a380b04697d8177bf792 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
name: job-container-invalid-credentials
on: push
jobs:
fail-on-invalid-credentials:
runs-on: ubuntu-latest
container:
image: node:16-buster-slim
credentials:
username: "user"
password: "" # Empty password caused a crash in jobexecutor
steps:
- run: exit 0
|