blob: 24bddcf40c1b15217150a750a11d984f3c55b43e (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
module.exports = async ({github, context}) => {
const result = await github.rest.pulls.listFiles({
owner: context.payload.repository.owner.login,
repo: context.payload.repository.name,
pull_number: context.payload.number,
per_page: 100,
});
const files = result.data.filter((file) => {
const filename = file.filename
// Markdown files are not tested
return !filename.endsWith("md") &&
// Exclude YAML files as long as they are not the PR workflow itself
!(filename.endsWith("yml") && !filename.endsWith("pull_request.yml")) && !filename.endsWith("yaml") &&
// Fastlane metadata does not need tests
!filename.startsWith("fastlane/");
});
console.log(`Remaining changed files: ${files.map(file => file.filename)}`)
return files.length != 0;
}
|