#github-actions (2024-03)

Discussions related to GitHub Actions

2024-03-01

Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)

2024-03-04

Pawel Rein avatar
Pawel Rein

I wonder if they fixed it fully. Is it me or anyone else also seeing intermittent errors in GHA such as

 An action could not be found at the URI

?

Hans D avatar

Github does provide the full cloudnative experience: always assume it will be broken, be happy if it works …

1
1
actions Archives - The GitHub Blog avatar
actions Archives - The GitHub Blog
05:35:37 PM

GitHub Actions: Larger Runners; Windows 11 Beta GitHub Actions: Larger Runners; Windows 11 Beta The post GitHub Actions: Larger Runners; Windows 11 Beta appeared first on The GitHub Blog.

GitHub Actions: Larger Runners; Windows 11 Beta

GitHub Actions: Larger Runners; Windows 11 Beta

The GitHub Blog - Updates, ideas, and inspiration from GitHub to help developers build and design software.

Updates, ideas, and inspiration from GitHub to help developers build and design software.

venkata.mutyala avatar
venkata.mutyala
1
1
sweetops1
Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)

@Igor Rodionov

2024-03-05

2024-03-06

actions Archives - The GitHub Blog avatar
actions Archives - The GitHub Blog
07:25:30 PM

Actions Fine Grained Permissions Actions Fine Grained Permissions The post Actions Fine Grained Permissions appeared first on The GitHub Blog.

Actions Fine Grained Permissions

Actions Fine Grained Permissions

The GitHub Blog - Updates, ideas, and inspiration from GitHub to help developers build and design software.

Updates, ideas, and inspiration from GitHub to help developers build and design software.

2024-03-07

actions Archives - The GitHub Blog avatar
actions Archives - The GitHub Blog
04:15:37 PM
GitHub Actions; All Actions will run on Node20 instead of Node16 by default

GitHub Actions; All Actions will run on Node20 instead of Node16 by default

The GitHub Blog - Updates, ideas, and inspiration from GitHub to help developers build and design software.

Updates, ideas, and inspiration from GitHub to help developers build and design software.

Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)

In other news, GitHub announced that 50% of the actions in the GitHub Marketplace will be deprecated on May 13th, 2024.

GitHub Actions; All Actions will run on Node20 instead of Node16 by default

GitHub Actions; All Actions will run on Node20 instead of Node16 by default

The GitHub Blog - Updates, ideas, and inspiration from GitHub to help developers build and design software.

Updates, ideas, and inspiration from GitHub to help developers build and design software.

nyan_parrot2
Hans D avatar

Trollface day was the day before yesterday …

2024-03-28

actions Archives - The GitHub Blog avatar
actions Archives - The GitHub Blog
07:15:33 PM

Actions Usage Metrics public beta Actions Usage Metrics public beta The post Actions Usage Metrics public beta appeared first on The GitHub Blog.

Actions Usage Metrics public beta

Actions Usage Metrics public beta

The GitHub Blog - Updates, ideas, and inspiration from GitHub to help developers build and design software.

Updates, ideas, and inspiration from GitHub to help developers build and design software.

2024-03-29

venkata.mutyala avatar
venkata.mutyala

I’m looking to automate my changelog/release/tags/release notes after whenever I merge a PR from renovatebot. Anyone here have recommendations on a FOSS to do what i described or something similar?

venkata.mutyala avatar
venkata.mutyala

I’m currently digging through these and thinking about chaining something customer together:

https://github.com/marketplace?category=&type=actions&verification=&query=changelog

Dan Miller (Cloud Posse) avatar
Dan Miller (Cloud Posse)

We have action for that, based on release-drafter https://github.com/cloudposse/github-action-auto-release

cloudposse/github-action-auto-release
1
1
venkata.mutyala avatar
venkata.mutyala

Thanks Dan! This looks Great!

np1
venkata.mutyala avatar
venkata.mutyala

Is there a way to get the labels added automatically? I’m looking at your code/nested actions and it seems like it might be missing functionality or specifically designed this way. I found a possible solution using: https://github.com/marketplace/actions/conventional-release-labels however, I am open to other ideas.

Dan Miller (Cloud Posse) avatar
Dan Miller (Cloud Posse)

absolutely! we use this action https://github.com/actions/labeler

actions/labeler

An action for automatically labelling pull requests

1
Dan Miller (Cloud Posse) avatar
Dan Miller (Cloud Posse)

I’m not sure. That’s a better question for @Igor Rodionov

venkata.mutyala avatar
venkata.mutyala

I have a feeling this is an issue with the default draft-release.yml but was curious to know if you had any insights:

Dan Miller (Cloud Posse) avatar
Dan Miller (Cloud Posse)

it looks like that’s a syntax error in your template, no?

venkata.mutyala avatar
venkata.mutyala

Just did a diff between yours and ours and it’s identical from what i can tell:

https://github.com/cloudposse/github-action-auto-release/blob/main/.github/configs/draft-release.yml https://github.com/GlueOps/metacontroller-operator-waf/blob/main/.github/configs/draft-release.yml

Only difference is i have a header ontop that is commented out.

venkata.mutyala avatar
venkata.mutyala

Had a few of these renovate bot PR’s that auto-release just didn’t like for some reason.

Dan Miller (Cloud Posse) avatar
Dan Miller (Cloud Posse)

the syntax errors looks like it comes from the PR summary, which comes from renovate. we also use renovate and I’m not sure why it’s trying to render content in that summary

1
venkata.mutyala avatar
venkata.mutyala

Thanks for the feedback. I’ll debug and share anything notable I find.

    keyboard_arrow_up