Simple email application for Android. Original source code: https://framagit.org/dystopia-project/simple-email
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

22 lines
464 B

// https://sail.ci/docs/environment-variables
module.exports = {
detect({env}) {
return Boolean(env.SAILCI);
},
configuration({env}) {
const pr = env.SAIL_PULL_REQUEST_NUMBER;
const isPr = Boolean(pr);
return {
name: 'Sail CI',
service: 'sail',
commit: env.SAIL_COMMIT_SHA,
branch: isPr ? undefined : env.SAIL_COMMIT_BRANCH,
pr,
isPr,
slug: `${env.SAIL_REPO_OWNER}/${env.SAIL_REPO_NAME}`,
root: env.SAIL_CLONE_DIR,
};
},
};