Skip to main content
GitHub Actions

GitHub Actions

SoftwareWikipedia

Search complete. 158 mentions across 60 episodes found for "GitHub Actions".

Sep 11, 2026

Lachlan ReidHOST
1:25
Now, setting CLAUDE_CODE_MS properly overrides that default 1.5-second limit for all session end lifecycle hooks that lack an explicit per-hook timeout.
James TurnerHOST
1:35
So if you stick CLAUDE_END_SENDMS=10000 into your GitHub Actions workflow or your local shell profile, your teardown script gets a full 10 seconds to wrap up cleanly.
Lachlan ReidHOST
1:47
Though there is an operational caveat here.
Lachlan ReidHOST
1:50
You still wanna be careful setting massive global timeouts.
PaulinaHOST
12:29
I don't know if that changed, but back in the day, you could only have like one Jenkins file per repo and that was it.
PaulinaHOST
12:38
With GitHub Actions, you can actually have multiple pipeline files.
PaulinaHOST
12:43
And what usually happens is you would have still someone building those using reusable pipelines from that central repository to do mainline stuff, like the main CI-CD criteria, and then beyond the merge.
PaulinaHOST
13:05
But multiple files, multiple CI files in the repository allows teams to add extra files there on top of what's created by the centralized team.
AndreHOST
13:50
And you need to usually keep the shared library for all of them for the particular instance.
AndreHOST
13:58
And usually the teams are not too happy about it because they want to have it more customized.
AndreHOST
14:04
And that's what GitHub Actions gives you.
AndreHOST
14:07
For example, GitHub Actions gives you much bigger flexibility without influencing everyone with it.
Aaron LeylandHOST
13:48
CVE-2026-12537 with CVSS at 10, a solid 10.
Aaron LeylandHOST
13:57
Gemini CLI, and this is the numbers, 0.39.1. And the run Gemini CLI GitHub action before 0.1.22.
Aaron LeylandHOST
14:10
So Google patched it back in April.
Aaron LeylandHOST
14:13
There was a walkthrough at DEF CON, and I'm going to tell you why it was beautiful in a kind of let the world burn type way.
Jonathan BennettHOST
8:30
Mm-hmm.
Olivier VerninGUEST
8:30
And then at the end of this, I have, like, I use GitHub Action that sends, um, notification to other Git repositories, and those other Git repositories, for example, one, for example, contain the Helm charts, if you're familiar with Kubernetes.
Olivier VerninGUEST
8:42
One contain the documentation, if you're familiar with, like, running YouGo in, in your websites.
Jonathan BennettHOST
8:47
Mm-hmm.
Olivier VerninGUEST
11:11
... or what piece of information I'm using.
Olivier VerninGUEST
11:13
I also like to use, um, the, uh, commands that specify these digests correspond to this information.
Olivier VerninGUEST
11:20
Um, so for example, in, in, in GitHub Action, for example, you can specify both information, and then me as a human, I can just quickly check if the version really com- match the, the, the, the, the commits.
Jonathan BennettHOST
11:30
Mm-hmm.
MiaHOST
0:31
He is a maintainer of Fake Redis, a pure Python implementation of the Redis API that began as a way to write tests without standing up a real server, and now works as a drop-in replacement for both Redis Py and Valkey Py, pulling over 5 million downloads a month.
MiaHOST
0:47
Beyond Fake Redis, he maintains Django task scheduler, built a GitHub actions plugin for JetBrains IDEs, and helps run Django Commons, a community organization for keeping Django packages healthy.
MiaHOST
1:00
Welcome, Daniel.
Daniel MoranGUEST
1:02
Thank you, and thank you for the nice introduction.

12 MINS LATER

Daniel MoranGUEST
12:50
Other than this, I can say that, um, also I had like, uh, two leads, uh, two clients, uh, that, uh, I got thanks to Fake Redis.
Daniel MoranGUEST
12:58
They just like approached me.
Daniel MoranGUEST
13:00
One of them actually, like, uh, they just saw like what I did with GitHub Action, like implementing this massive matrix [laughs] of like what's going on, and they say like, "Yeah, we need like to do, uh, something similar in our situation, like, uh, with GitHub Actions, and you obviously, like you know how to create like this matrix in GitHub Actions." So yeah, and this, I did the project for them.
Daniel MoranGUEST
13:20
Another one, they wanted to extend, uh, actually Fake Redis, so, uh, and have it support, uh, something else.
Eric OstermanHOST
7:56
So after it makes the changes to the files when you run Atmos, you can have it also open a pull request with those changes.
Eric OstermanHOST
8:03
So it works really convenient if you're using GitHub Actions or GitLab.
Eric OstermanHOST
8:11
Actually, GitLab is not supported for opening pull requests.
Eric OstermanHOST
8:19
Another related update is sometimes you need different formats for the version that you update in your files.

24 MINS LATER

Eric OstermanHOST
32:53
And then if I look at this state file migration, this is saying migrate the random pet legacy to random pet service.
Eric OstermanHOST
33:02
And that's why that worked cleanly.
Eric OstermanHOST
33:05
So the beauty with all of this is you can have a fully GitOps-driven approach to migrations that works through your CI-CD process, for example, with GitHub Actions.
Eric OstermanHOST
33:19
And you don't have to apply those migrations locally.
JoshHOST
22:44
deeply appreciate that because it helps them a lot in the long run and overall.
JoshHOST
22:51
And I'm glad you talked about GitHub because you spoke at React Vienna at a meetup about automating JSDoc with GitHub Actions.
JoshHOST
22:59
For anyone in the audience who might not be familiar, can you give us a quick overview of what is JSDoc and why it matters?
Adrián BolonioGUEST
23:06
JSDoc is a documentation tool.
JoshHOST
25:47
Well, that's why we automate things, right? And then why GitHub Action specifically? Was there anything else you'd considered beforehand? Or was just that GitHub, it worked and it was there? Yeah, I think it was
Adrián BolonioGUEST
26:00
a bit of every repo was hosted in GitHub.
Adrián BolonioGUEST
26:06
We had GitHub Actions on our hand to use, as well as a standard now in the industry.
Adrián BolonioGUEST
26:13
So I think it was fairly easy to find examples well taken by the community.
Daniel DufourGUEST
6:25
It all starts with people.
Daniel DufourGUEST
6:29
GitHub Actions played a very critical role And if you want to learn more about GitHub Actions, we have a workshop tomorrow.
Daniel DufourGUEST
6:44
And if it is sold out, reach out to us.
Daniel DufourGUEST
6:49
All the material is public.
Daniel DufourGUEST
11:18
You don't necessarily, if you can take four days instead of two days to do something, but it unlocks a new ability, sometimes if it's not an emergency, it's worth taking that time because then you can use that capability later.
Daniel DufourGUEST
11:32
And so we had been, building our capabilities for a while.
Daniel DufourGUEST
11:38
And it did take a long time to figure out how to automate pulling from a Google map of road closures through GitHub Actions onto our open data platform.
Daniel DufourGUEST
11:48
But we had unlocked that previously.
Chris OliverHOST
4:17
And I meant to ask Marco this, but...
Chris OliverHOST
4:21
Potentially, that can also then run Herb Analyze, and then that could just be added as a command to the CI that GitHub Actions...
Chris OliverHOST
4:31
Because we've got RuboCop in there.
Chris OliverHOST
4:34
So presumably we could just add that as another step to the CI steps and then have it validate your HTML correctness and all that.
Matthew SanabriaGUEST
60:24
And then I'll be left with a pull request that I can review or whatever.
Matthew SanabriaGUEST
60:28
If it's something open-ended where I'm trying to build the context, like for example, that oxide build kite stuff that I was thinking through, the whole point of that conversation was to flesh out how would this look like? And I would tell the AI agent via voice, I already have a GitHub Actions ephemeral runner.
Matthew SanabriaGUEST
60:45
It works this way.
Matthew SanabriaGUEST
60:46
It uses these APIs.

50 more episodes mention GitHub Actions.

Create an account to see the whole feed, search across every transcript, and follow the entities you care about.

We value your privacy

We use cookies to understand how you use our platform and to improve your experience. Click “Accept All” to consent, or “Decline non-essential” to opt out of non-essential cookies. Read our Privacy Policy.