diff --git a/.changesets/20250314T163021-pr-59.md b/.changesets/20250314T163021-pr-59.md new file mode 100644 index 0000000..21820db --- /dev/null +++ b/.changesets/20250314T163021-pr-59.md @@ -0,0 +1,9 @@ +--- +title: 'feat: email scalar' +pr: 59 +author: jasonbahl +type: feat +breaking: false +branch: milestone/custom-scalars +--- +Pretend to add the Email Scalar diff --git a/.changesets/20250314T163922-pr-60.md b/.changesets/20250314T163922-pr-60.md new file mode 100644 index 0000000..b658986 --- /dev/null +++ b/.changesets/20250314T163922-pr-60.md @@ -0,0 +1,9 @@ +--- +title: 'feat: phone scalar' +pr: 60 +author: jasonbahl +type: feat +breaking: false +branch: milestone/custom-scalars +--- +null diff --git a/.changesets/20250314T164425-pr-61.md b/.changesets/20250314T164425-pr-61.md new file mode 100644 index 0000000..2803248 --- /dev/null +++ b/.changesets/20250314T164425-pr-61.md @@ -0,0 +1,9 @@ +--- +title: 'feat!: breaking change' +pr: 61 +author: jasonbahl +type: other +breaking: true +branch: milestone/custom-scalars +--- +Simulating a breaking change to test the workflows diff --git a/.github/workflows/milestone-branch-workflow.md b/.github/workflows/milestone-branch-workflow.md index bdd1855..04366df 100644 --- a/.github/workflows/milestone-branch-workflow.md +++ b/.github/workflows/milestone-branch-workflow.md @@ -50,7 +50,7 @@ When a PR is merged to a milestone branch, the changeset generation workflow: The workflow automatically creates and maintains a PR from the milestone branch to the develop branch: -1. **PR Title**: `feat: feature-name 🚀` +1. **PR Title**: `milestone: feature-name 🚀` 2. **PR Body**: Contains: - Milestone information and progress - Link to the GitHub Milestone diff --git a/automation-tests.php b/automation-tests.php index 10895dc..0758166 100644 --- a/automation-tests.php +++ b/automation-tests.php @@ -16,3 +16,10 @@ add_action( 'admin_notices', function() { echo '

😇 Automation Tests v' . AUTOMATION_TESTS_VERSION . '

'; }); + +// SCALARS: +// - Email +// - Phone + +// BREAKING CHANGE +// We're simulating a breaking change with this comment. \ No newline at end of file diff --git a/docs/WORKFLOW_VISUALIZATION.md b/docs/WORKFLOW_VISUALIZATION.md index 4f0e6f2..b5d3ebf 100644 --- a/docs/WORKFLOW_VISUALIZATION.md +++ b/docs/WORKFLOW_VISUALIZATION.md @@ -244,7 +244,7 @@ graph TD D[Feature Branch 3] -->|Create PR| B B -->|Merge PR| E[Generate Changeset] E -->|Commit Changeset| B - B -->|Create/Update PR| F[develop] + B -->|Create/Update PR with title "milestone: feature-name 🚀"| F[develop] F -->|Merge PR| G[Generate Changeset] G -->|Commit Changeset| F F -->|Create/Update PR| H[main]