danger 14.0.4 → 14.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/README.md +7 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -18,6 +18,10 @@
|
|
|
18
18
|
|
|
19
19
|
<!-- Your comment above this -->
|
|
20
20
|
|
|
21
|
+
## 14.0.0-5
|
|
22
|
+
|
|
23
|
+
Release faff as I migrate to OIDC deploys for danger - orta
|
|
24
|
+
|
|
21
25
|
## 14.0.0
|
|
22
26
|
|
|
23
27
|
Danger now installs undici 7 by default. undici is what Danger uses to talk to GitHub, GitLab and Bitbucket, and version
|
package/README.md
CHANGED
|
@@ -96,12 +96,16 @@ Check the issues, I try and keep my short term perspective there. Long term is i
|
|
|
96
96
|
|
|
97
97
|
### Releasing a new version of Danger
|
|
98
98
|
|
|
99
|
-
|
|
99
|
+
Releases are triggered by pushing a version tag. Tag creation on this repo is restricted by the "Release tags"
|
|
100
|
+
repository ruleset, so the set of people who can ship a release is that ruleset's bypass list.
|
|
100
101
|
|
|
101
102
|
- Checkout the `main` branch. Ensure your working tree is clean, and make sure you have the latest changes by running
|
|
102
103
|
`git pull; yarn`.
|
|
103
|
-
-
|
|
104
|
-
|
|
104
|
+
- Bump and tag - `npm run release -- patch`. This bumps `package.json`, commits, tags and pushes. It no longer publishes
|
|
105
|
+
to npm from your machine, so there's no OTP to enter.
|
|
106
|
+
- Pushing the tag runs [`npm_publish.yml`](.github/workflows/npm_publish.yml), which publishes to npm using npm's
|
|
107
|
+
trusted publishing (there is no `NPM_TOKEN` secret) and then kicks off `release.yml` for the macOS native builds and
|
|
108
|
+
the homebrew tap.
|
|
105
109
|
|
|
106
110
|
:ship:
|
|
107
111
|
|
|
@@ -119,4 +123,3 @@ to stay on top of Danger without all the emails from GitHub.
|
|
|
119
123
|
>
|
|
120
124
|
> Contributors subscribe to the [Contributor Code of Conduct](http://contributor-covenant.org/version/1/3/0/) based on
|
|
121
125
|
> the [Contributor Covenant](http://contributor-covenant.org) version 1.3.0.
|
|
122
|
-
|