Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add post on diff-check in GitHub Marketplace #120

Merged
merged 1 commit into from
Sep 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions _posts/2024-09-27-diff-check-is-on-github-marketplace.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
title: "diff-check is on GitHub Marketplace"
tags: project github-actions
---

Today, I cut the [first release (v1.0.0)][3] and [published diff-check to
GitHub Marketplace][2].

[`diff-check`][4] came out of seeing a common pattern of seeing side effects
when another automated process would run, creating more work which wouldn't be
seen at the time. It was really common when I was working on React Native
projects (if you upgrade an `npm` dependency, you'll often get a change in the
`Podfile.lock` that Dependabot wouldn't know about), but less frequently in
projects using Appraisal (another project I maintain). I [previously wrote up
how it works in the announcement blog post][1].

With some help from [Oscar Gustafsson][5] (thank you!), he helped see some bits
I'd got wrong and also pointed out some small ways in which we could improve
the output too. Several weeks ago, [I'd also merged in a PR to use this on
Administrate][6] and so now I'm pretty happy it's working.

I'd love to hear if it works out for you!

[1]: https://nickcharlton.net/posts/diff-check-github-action
[2]: https://github.com/marketplace/actions/diff-check
[3]: https://github.com/nickcharlton/diff-check/releases
[4]: https://github.com/nickcharlton/diff-check
[5]: https://github.com/oscargus
[6]: https://github.com/thoughtbot/administrate/pull/2609
Loading