You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!-- 👋 Hi, thanks for sending a PR to create-typescript-app! 🎁.
Please fill out all fields below and make sure each item is true and [x]
checked.
Otherwise we may not be able to review your PR. -->
## PR Checklist
- [x] Addresses an existing open issue: fixes#2009
- [x] That issue was marked as [`status: accepting
prs`](https://github.com/JoshuaKGoldberg/create-typescript-app/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22)
- [x] Steps in
[CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/create-typescript-app/blob/main/.github/CONTRIBUTING.md)
were taken
## Overview
Moves the transition mode logic into two files:
1. `.github/actions/transition/action.yml`: A dedicated composite action
for running in transition mode and checking in & commenting any changes
2. `.github/workflows/cta.yml`: Checks if the action should be run, and
runs it if so
This means the job won't be marked as _Skipped_ if the logic is skipped.
It'll still be _Success_ and thus not block PRs.
🎁
🤖 Beep boop! I ran \`npx create-typescript-app\` and found same changes.
52
-
Please review the latest commit to see if you want to merge it.
53
-
Cheers! 💝
54
-
55
-
> This change was automatically made in CI to keep your repository up-to-date with the templating in [create-typescript-app](https://github.com/JoshuaKGoldberg/create-typescript-app).
56
-
> If you want to opt out of these automatic updates, delete the \`.github/workflows/cta-transitions.yml\` file on your \`main\` branch.`,
57
-
"repo-token": "${{ secrets.ACCESS_TOKEN }}",
58
-
},
59
-
},
60
-
],
61
-
},
62
-
],
63
-
},
64
-
block: blockGitHubActionsCI,
65
-
},
66
-
{
67
-
addons: {
68
-
properties: {
69
-
devDependencies: {
70
-
"create-typescript-app": packageData.version,
71
-
},
72
-
},
16
+
expect(creation.addons).toEqual([
17
+
blockPackageJson({
18
+
properties: {
19
+
devDependencies: {
20
+
"create-typescript-app": packageData.version,
73
21
},
74
-
block: blockPackageJson,
75
22
},
76
-
],
77
-
});
23
+
}),
24
+
blockRepositoryBranchRuleset({
25
+
requiredStatusChecks: ["Transition"],
26
+
}),
27
+
]);
28
+
expect(creation.files).toMatchInlineSnapshot(`
29
+
{
30
+
".github": {
31
+
"actions": {
32
+
"transition": {
33
+
"action.yml": "description: Runs create-typescript-app in transition mode
"🤖 Beep boop! I ran `pnpx create-typescript-app` and it updated some files.",
60
+
"I went ahead and checked those changes into this PR for you. Please review the latest commit to see if you want to merge it.",
61
+
"Cheers!",
62
+
" — _The Friendly Bingo Bot_ 💝",
63
+
"",
64
+
"> ℹ️ These automatic commits keep your repository up-to-date with new versions of [create-typescript-app](https://github.com/JoshuaKGoldberg/create-typescript-app). If you want to opt out, delete your `.github/workflows/cta-transitions.yml` file.",
"🤖 Beep boop! I ran `npx create-typescript-app` and found same changes.",
53
-
"Please review the latest commit to see if you want to merge it.",
54
-
"Cheers! 💝",
55
-
"",
56
-
"> This change was automatically made in CI to keep your repository up-to-date with the templating in [create-typescript-app](https://github.com/JoshuaKGoldberg/create-typescript-app).",
57
-
"> If you want to opt out of these automatic updates, delete the `.github/workflows/cta-transitions.yml` file on your `main` branch.",
0 commit comments