Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add an option to mark whether the validation is required or not for wait-list items #762

Merged
merged 6 commits into from
Apr 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/itself.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,10 @@ jobs:
{
"workflowFile": "merge-bot-pr.yml",
"jobName": "dependabot"
},
{
"workflowFile": "THERE_ARE_NO_FILES_AS_THIS.yml",
"optional": true
}
]
skip-list:
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@

This file only records notable changes. Not synchronized with all releases and tags.

- main - not yet released
- Add option to disable validations for `wait-list` and not found the checkRun
- v3.0.0
- Wait other jobs which defined in same workflow by default: [#754](https://github.com/kachick/wait-other-jobs/issues/754)\
You can change this behavior with new option `skip-same-workflow: 'true'`
- Validate if the checkRun for the `wait-list` specified name is not found: [#760](https://github.com/kachick/wait-other-jobs/issues/760)
- v2.0.2
- Allow some neutral patterns: [93299c](https://github.com/kachick/wait-other-jobs/commit/93299c2fa22fd463db31668eba54b34b58270696)
- v2.0.0
Expand Down
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,19 @@ with:
early-exit: 'false' # default 'true'
skip-same-workflow: 'true' # default 'false'
# lists should be given with JSON formatted array, do not specify both wait-list and skip-list
# - Each item should have a "workflowFile" field, and they can optionally have a "jobName" field
# - If no jobName is specified, all the jobs in the workflow will be targeted
# - Each item should have a "workflowFile" field, and they can optionally have a "jobName" field.
# - If no jobName is specified, all the jobs in the workflow will be targeted.
# - wait-list: If the checkRun for the specified name is not found, this action raise errors by default.
# You can disable this validation `optional: true`.
wait-list: |
[
{
"workflowFile": "ci.yml",
"jobName": "test"
},
{
"workflowFile": "release.yml"
"workflowFile": "release.yml",
"optional": true
}
]
skip-list: |
Expand Down
29 changes: 20 additions & 9 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -28150,7 +28150,11 @@ var FilterCondition = z.object({
workflowFile: z.string().endsWith(".yml"),
jobName: z.string().min(1).optional()
});
var FilterConditions = z.array(FilterCondition);
var WaitFilterCondition = FilterCondition.extend(
{ optional: z.boolean().optional().default(false) }
);
var SkipFilterConditions = z.array(FilterCondition);
var WaitFilterConditions = z.array(WaitFilterCondition);
async function getCheckRunSummaries(token, trigger) {
const octokit = new PaginatableOctokit({ auth: token });
const { repository: { object: { checkSuites } } } = await octokit.graphql.paginate(
Expand Down Expand Up @@ -28247,11 +28251,21 @@ async function fetchOtherRunStatus(token, trigger, waitList, skipList, shouldSki
const others = summaries.filter((summary) => !(summary.isSameWorkflow && trigger.jobName === summary.jobName));
let filtered = others.filter((summary) => !(summary.isSameWorkflow && shouldSkipSameWorkflow));
if (waitList.length > 0) {
const seeker = waitList.map((condition) => ({ ...condition, found: false }));
filtered = filtered.filter(
(summary) => waitList.some(
(target) => target.workflowFile === summary.workflowPath && (target.jobName ? target.jobName === summary.jobName : true)
)
(summary) => seeker.some((target) => {
if (target.workflowFile === summary.workflowPath && (target.jobName ? target.jobName === summary.jobName : true)) {
target.found = true;
return true;
} else {
return false;
}
})
);
const unmatches = seeker.filter((result) => !result.found && !result.optional);
if (unmatches.length > 0) {
throw new Error(`Failed to meet some runs on your specified wait-list: ${JSON.stringify(unmatches)}`);
}
}
if (skipList.length > 0) {
filtered = filtered.filter(
Expand All @@ -28260,9 +28274,6 @@ async function fetchOtherRunStatus(token, trigger, waitList, skipList, shouldSki
)
);
}
if (filtered.length === 0) {
throw new Error("No targets found except wait-other-jobs itself");
}
const completed = filtered.filter((summary) => summary.runStatus === "COMPLETED");
const progress = completed.length === filtered.length ? "done" : "in_progress";
const conclusion = completed.every((summary) => summary.acceptable) ? "acceptable" : "bad";
Expand Down Expand Up @@ -28366,8 +28377,8 @@ async function run() {
(0, import_core2.getInput)("attempt-limits", { required: true, trimWhitespace: true }),
10
);
const waitList = FilterConditions.parse(JSON.parse((0, import_core2.getInput)("wait-list", { required: true })));
const skipList = FilterConditions.parse(JSON.parse((0, import_core2.getInput)("skip-list", { required: true })));
const waitList = WaitFilterConditions.parse(JSON.parse((0, import_core2.getInput)("wait-list", { required: true })));
const skipList = SkipFilterConditions.parse(JSON.parse((0, import_core2.getInput)("skip-list", { required: true })));
if (waitList.length > 0 && skipList.length > 0) {
(0, import_core2.error)("Do not specify both wait-list and skip-list");
(0, import_core2.setFailed)("Specified both list");
Expand Down
34 changes: 24 additions & 10 deletions src/github-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@ const FilterCondition = z.object({
workflowFile: z.string().endsWith('.yml'),
jobName: (z.string().min(1)).optional(),
});
export const FilterConditions = z.array(FilterCondition);
const WaitFilterCondition = FilterCondition.extend(
{ optional: z.boolean().optional().default(false) },
);
export const SkipFilterConditions = z.array(FilterCondition);
export const WaitFilterConditions = z.array(WaitFilterCondition);

interface Trigger {
owner: string;
Expand Down Expand Up @@ -152,8 +156,8 @@ interface Report {
export async function fetchOtherRunStatus(
token: string,
trigger: Trigger,
waitList: z.infer<typeof FilterConditions>,
skipList: z.infer<typeof FilterConditions>,
waitList: z.infer<typeof WaitFilterConditions>,
skipList: z.infer<typeof SkipFilterConditions>,
shouldSkipSameWorkflow: boolean,
): Promise<Report> {
if (waitList.length > 0 && skipList.length > 0) {
Expand All @@ -165,11 +169,25 @@ export async function fetchOtherRunStatus(
let filtered = others.filter((summary) => !(summary.isSameWorkflow && shouldSkipSameWorkflow));

if (waitList.length > 0) {
const seeker = waitList.map((condition) => ({ ...condition, found: false }));
filtered = filtered.filter((summary) =>
waitList.some((target) =>
target.workflowFile === summary.workflowPath && (target.jobName ? (target.jobName === summary.jobName) : true)
)
seeker.some((target) => {
if (
target.workflowFile === summary.workflowPath && (target.jobName ? (target.jobName === summary.jobName) : true)
) {
target.found = true;
return true;
} else {
return false;
}
})
);

const unmatches = seeker.filter((result) => (!(result.found)) && (!(result.optional)));

if (unmatches.length > 0) {
throw new Error(`Failed to meet some runs on your specified wait-list: ${JSON.stringify(unmatches)}`);
}
}
if (skipList.length > 0) {
filtered = filtered.filter((summary) =>
Expand All @@ -179,10 +197,6 @@ export async function fetchOtherRunStatus(
);
}

if (filtered.length === 0) {
throw new Error('No targets found except wait-other-jobs itself');
}

const completed = filtered.filter((summary) => summary.runStatus === 'COMPLETED');

const progress: Report['progress'] = completed.length === filtered.length
Expand Down
6 changes: 3 additions & 3 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const errorMessage = (body: string) => (`${styles.red.open}${body}${styles.red.c
const succeededMessage = (body: string) => (`${styles.green.open}${body}${styles.green.close}`);
const colorize = (body: string, ok: boolean) => (ok ? succeededMessage(body) : errorMessage(body));

import { FilterConditions, fetchOtherRunStatus } from './github-api.js';
import { SkipFilterConditions, WaitFilterConditions, fetchOtherRunStatus } from './github-api.js';
import { readableDuration, wait, isRetryMethod, retryMethods, getIdleMilliseconds } from './wait.js';

async function run(): Promise<void> {
Expand Down Expand Up @@ -73,8 +73,8 @@ async function run(): Promise<void> {
getInput('attempt-limits', { required: true, trimWhitespace: true }),
10,
);
const waitList = FilterConditions.parse(JSON.parse(getInput('wait-list', { required: true })));
const skipList = FilterConditions.parse(JSON.parse(getInput('skip-list', { required: true })));
const waitList = WaitFilterConditions.parse(JSON.parse(getInput('wait-list', { required: true })));
const skipList = SkipFilterConditions.parse(JSON.parse(getInput('skip-list', { required: true })));
if (waitList.length > 0 && skipList.length > 0) {
error('Do not specify both wait-list and skip-list');
setFailed('Specified both list');
Expand Down