Skip to content

Commit

Permalink
chore: update header url
Browse files Browse the repository at this point in the history
  • Loading branch information
oesgalha committed Aug 30, 2021
1 parent 037c20c commit ed48b63
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugins/platforms/github/mod.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
`;

const fakeYamlWithHeader = `# Generated with pipelinit ${FAKE_VERSION}
# https://www.pipelinit.com/
# https://pipelinit.com/
${fakeYaml}`;

Deno.test("Plugins > GitHub - prepends a header to generated files", async () => {
Expand Down
2 changes: 1 addition & 1 deletion plugins/platforms/github/mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { PlatformWriterFn } from "../deps.ts";
export const github: PlatformWriterFn = async (context, templates) => {
const header = `
# Generated with pipelinit ${context.version}
# https://www.pipelinit.com/
# https://pipelinit.com/
`.trimStart();
const configurationFiles = [];
for await (const template of templates) {
Expand Down

0 comments on commit ed48b63

Please sign in to comment.