Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/components/BuildkiteCIUploadStep.astro
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
import { Code as InlineCode } from 'astro:components';
import { Code } from 'astro-expressive-code/components';

import buildkitePluginVersion from '~/data/buildkite-plugin-version.json';

const inlineThemes = { light: 'github-light', dark: 'github-dark' } as const;

export interface Props {
Expand All @@ -15,7 +17,7 @@ const { reportPath } = Astro.props;
- label: "Run tests"
command: <your test command>
plugins:
- mergifyio/mergify-ci#v1:
- mergifyio/mergify-ci#${buildkitePluginVersion.version}:
action: junit-process
report_path: ${reportPath}
token: "\${MERGIFY_TOKEN}"`}
Expand Down
3 changes: 2 additions & 1 deletion src/components/BuildkiteCIUploadStepMatrix.astro
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import { Code } from 'astro-expressive-code/components';

import Aside from '~/components/Aside.astro';
import buildkitePluginVersion from '~/data/buildkite-plugin-version.json';

export interface Props {
reportPath: string;
Expand All @@ -23,7 +24,7 @@ const { reportPath } = Astro.props;
- "3.12"
command: <your test command>
plugins:
- mergifyio/mergify-ci#v1:
- mergifyio/mergify-ci#${buildkitePluginVersion.version}:
action: junit-process
job_name: "Tests ({{matrix}})"
report_path: ${reportPath}
Expand Down