Skip to content

Commit 77f6572

Browse files
committed
chore: PGSchema to pgschema
1 parent de06b16 commit 77f6572

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/pgschema-plan-multi.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: PGSchema Plan - Multi File
1+
name: pgschema Plan - Multi File
22

33
on:
44
pull_request:
@@ -61,7 +61,7 @@ jobs:
6161
// Decode the escaped output
6262
const decodedOutput = decodeURIComponent(planOutput);
6363
64-
const body = `## PGSchema Plan Output (Multi File)
64+
const body = `## pgschema Plan Output (Multi File)
6565
6666
<details>
6767
<summary>Click to expand plan details</summary>
@@ -73,7 +73,7 @@ jobs:
7373
</details>
7474
7575
---
76-
*This comment was automatically generated by the PGSchema Multi File Plan workflow.*`;
76+
*This comment was automatically generated by the pgschema Multi File Plan workflow.*`;
7777
7878
// Try to find existing comment
7979
const { data: comments } = await github.rest.issues.listComments({
@@ -83,7 +83,7 @@ jobs:
8383
8484
const botComment = comments.find(comment =>
8585
comment.user.type === 'Bot' &&
86-
comment.body.includes('PGSchema Plan Output (Multi File)')
86+
comment.body.includes('pgschema Plan Output (Multi File)')
8787
);
8888
8989
if (botComment) {

.github/workflows/pgschema-plan-single.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: PGSchema Plan - Single File
1+
name: pgschema Plan - Single File
22

33
on:
44
pull_request:
@@ -61,7 +61,7 @@ jobs:
6161
// Decode the escaped output
6262
const decodedOutput = decodeURIComponent(planOutput);
6363
64-
const body = `## PGSchema Plan Output (Single File)
64+
const body = `## pgschema Plan Output (Single File)
6565
6666
<details>
6767
<summary>Click to expand plan details</summary>
@@ -73,7 +73,7 @@ jobs:
7373
</details>
7474
7575
---
76-
*This comment was automatically generated by the PGSchema Single File Plan workflow.*`;
76+
*This comment was automatically generated by the pgschema Single File Plan workflow.*`;
7777
7878
// Try to find existing comment
7979
const { data: comments } = await github.rest.issues.listComments({
@@ -83,7 +83,7 @@ jobs:
8383
8484
const botComment = comments.find(comment =>
8585
comment.user.type === 'Bot' &&
86-
comment.body.includes('PGSchema Plan Output (Single File)')
86+
comment.body.includes('pgschema Plan Output (Single File)')
8787
);
8888
8989
if (botComment) {

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# PGSchema GitHub Actions Example
1+
# pgschema GitHub Actions Example
22

33
This repository demonstrates how to use [pgschema](https://www.pgschema.com/) with GitHub Actions to automatically run schema migration plans on pull requests. It includes examples for both single-file and multi-file schema approaches.
44

0 commit comments

Comments
 (0)