Skip to content

Commit

Permalink
docs: Update README for new archived field
Browse files Browse the repository at this point in the history
  • Loading branch information
hackebrot committed Nov 19, 2024
1 parent e77dd25 commit 1ab871f
Showing 1 changed file with 19 additions and 6 deletions.
25 changes: 19 additions & 6 deletions ciplatforms/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ service,repository
monitor,mozilla/blurts-server
autoconnect,mozilla-services/autopush-rs
autoendpoint,mozilla-services/autopush-rs
contile,mozilla-services/contile
```

Example JSON output format (`services_ciplatforms.json`):
Expand All @@ -111,32 +112,44 @@ Example JSON output format (`services_ciplatforms.json`):
"circle_ci": false,
"gh_actions": true,
"taskcluster": false,
"accessible": true
"accessible": true,
"archived": false
},
{
"service": "autoconnect",
"repository": "mozilla-services/autopush-rs",
"circle_ci": true,
"gh_actions": true,
"taskcluster": false,
"accessible": true
"accessible": true,
"archived": false
},
{
"service": "autoendpoint",
"repository": "mozilla-services/autopush-rs",
"circle_ci": true,
"gh_actions": true,
"taskcluster": false,
"accessible": true
"accessible": true,
"archived": false
},
{
"service": "contile",
"repository": "mozilla-services/contile",
"circle_ci": true,
"gh_actions": false,
"taskcluster": false,
"accessible": true,
"archived": true
}
]
```

This output provides details about the CI platform configuration status of each
repository, including its accessibility (a repository may be inaccessible if it
does not exist or if the provided authentication token lacks access), and flags
indicating the presence of CircleCI, GitHub Actions, and Taskcluster
configuration files.
does not exist or if the provided authentication token lacks access), whether it
has been archived, and flags indicating the presence of CircleCI, GitHub
Actions, and Taskcluster configuration files.

## Docker

Expand Down

0 comments on commit 1ab871f

Please sign in to comment.