diff options
author | Michael Forney <mforney@mforney.org> | 2019-11-18 14:45:23 -0800 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2019-11-18 14:45:23 -0800 |
commit | 9a393428186c42b7dc227e3f7a1bc3cbb0c099aa (patch) | |
tree | 5d6288e5a1e8dde9ad17f39f90c4eb8d54293ca2 | |
parent | 8db73edd61b1d4fbb2c2de62fb1b55c616ac7054 (diff) |
Fix email address in build manifests
Go's email libraries (used by builds.sr.ht) need the address to be in
this format.
-rw-r--r-- | .builds/alpine-aarch64.yml | 2 | ||||
-rw-r--r-- | .builds/alpine.yml | 2 | ||||
-rw-r--r-- | .builds/debian-aarch64.yml | 2 | ||||
-rw-r--r-- | .builds/debian.yml | 2 | ||||
-rw-r--r-- | .builds/freebsd.yml | 2 | ||||
-rw-r--r-- | .builds/nixos.yml | 2 | ||||
-rw-r--r-- | .builds/openbsd.yml | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/.builds/alpine-aarch64.yml b/.builds/alpine-aarch64.yml index 8c5d199..cb9e345 100644 --- a/.builds/alpine-aarch64.yml +++ b/.builds/alpine-aarch64.yml @@ -29,4 +29,4 @@ tasks: triggers: - action: email condition: failure - to: ~mcf/cproc@lists.sr.ht + to: "<~mcf/cproc@lists.sr.ht>" diff --git a/.builds/alpine.yml b/.builds/alpine.yml index 7a81b31..be06ce1 100644 --- a/.builds/alpine.yml +++ b/.builds/alpine.yml @@ -23,4 +23,4 @@ tasks: triggers: - action: email condition: failure - to: ~mcf/cproc@lists.sr.ht + to: "<~mcf/cproc@lists.sr.ht>" diff --git a/.builds/debian-aarch64.yml b/.builds/debian-aarch64.yml index 5326844..5df4865 100644 --- a/.builds/debian-aarch64.yml +++ b/.builds/debian-aarch64.yml @@ -25,4 +25,4 @@ tasks: triggers: - action: email condition: failure - to: ~mcf/cproc@lists.sr.ht + to: "<~mcf/cproc@lists.sr.ht>" diff --git a/.builds/debian.yml b/.builds/debian.yml index 5ac2e96..b719099 100644 --- a/.builds/debian.yml +++ b/.builds/debian.yml @@ -12,4 +12,4 @@ tasks: triggers: - action: email condition: failure - to: ~mcf/cproc@lists.sr.ht + to: "<~mcf/cproc@lists.sr.ht>" diff --git a/.builds/freebsd.yml b/.builds/freebsd.yml index cbc689e..c596346 100644 --- a/.builds/freebsd.yml +++ b/.builds/freebsd.yml @@ -14,4 +14,4 @@ tasks: triggers: - action: email condition: failure - to: ~mcf/cproc@lists.sr.ht + to: "<~mcf/cproc@lists.sr.ht>" diff --git a/.builds/nixos.yml b/.builds/nixos.yml index f7f9a62..1f7b234 100644 --- a/.builds/nixos.yml +++ b/.builds/nixos.yml @@ -17,4 +17,4 @@ tasks: triggers: - action: email condition: failure - to: ~mcf/cproc@lists.sr.ht + to: "<~mcf/cproc@lists.sr.ht>" diff --git a/.builds/openbsd.yml b/.builds/openbsd.yml index f5d9cd9..bf5d824 100644 --- a/.builds/openbsd.yml +++ b/.builds/openbsd.yml @@ -17,4 +17,4 @@ tasks: triggers: - action: email condition: failure - to: ~mcf/cproc@lists.sr.ht + to: "<~mcf/cproc@lists.sr.ht>" |