#github-actions (2023-11)

Discussions related to GitHub Actions

2023-11-01

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

Azure private networking for GitHub-hosted runners – Public Beta GitHub-hosted Runners: Private Networking with Azure Virtual Networks - Public Beta The post Azure private networking for GitHub-hosted runners – Public Beta appeared first on The GitHub Blog.

GitHub-hosted Runners: Private Networking with Azure Virtual Networks - Public Beta

GitHub-hosted Runners: Private Networking with Azure Virtual Networks - 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.

2023-11-02

actions Archives - The GitHub Blog avatar
actions Archives - The GitHub Blog
07:55:38 PM
GitHub Actions - Enforcing workflow scope when creating a release

GitHub Actions - Enforcing workflow scope when creating a release

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.

2023-11-13

ario.khosh avatar
ario.khosh

Anyone know if there is a way to get org wide enqueued actions on GitHub?

Max Lobur (Cloud Posse) avatar
Max Lobur (Cloud Posse)

You mean for Github-hosted workers? For self-hosted it is org-wide by default I believe

Igor Rodionov avatar
Igor Rodionov

I never do that. What is the use case when you need that? It seems to be a bottleneck for workflows

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

Do you mean run the same GitHub Action Workflow for all repos in an Organization? In that case, no that’s not supported, but instead you can create a “reusable” workflow https://docs.github.com/en/actions/using-workflows/reusing-workflows

ario.khosh avatar
ario.khosh

The api seems to only provide that info per repo it seems.

2023-11-14

RB avatar
RB avatar

The first is an interesting deep dive on supply chain and repo jacking for gha

RB avatar

The second is like iam access analyzer for github actions

2023-11-28

samuel avatar

hi, every one, I have question currely I am work with enterprise github, I want have a workflow that runs when any thing repo tha starting with name RPA

1
Gabriela Campana (Cloud Posse) avatar
Gabriela Campana (Cloud Posse)

@Dan Miller (Cloud Posse)

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

are you taking about a workflow in a specific repo that runs for any branch name starting with RPA?

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

or are you taking about workflows for all repos with names starting with RPA in an organization ?

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


are you taking about a workflow in a specific repo that runs for any branch name starting with RPA?

name: example workflow
on:
  pull_request:
    branches: 
      - 'rpa-**'
    types: [opened, synchronize, reopened, closed, labeled, unlabeled]

for example

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


or are you taking about workflows for all repos with names starting with RPA in an organization ?
you should create a reusable workflow for the organization, but there is no way to automatically add these workflows to every repo starting with RPA. You would need to copy the workflow call into each. Perhaps you can automate that with gh cli

more on reusable workflows: https://docs.github.com/en/actions/using-workflows/reusing-workflows

2023-11-29

    keyboard_arrow_up