#github-actions (2023-11)
Discussions related to GitHub Actions
2023-11-01
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
Updates, ideas, and inspiration from GitHub to help developers build and design software.
2023-11-02
GitHub Actions – Enforcing workflow scope when creating a release GitHub Actions - Enforcing workflow scope when creating a release The post GitHub Actions – Enforcing workflow scope when creating a release appeared first on The GitHub Blog.
GitHub Actions - Enforcing workflow scope when creating a release
Updates, ideas, and inspiration from GitHub to help developers build and design software.
2023-11-13
Anyone know if there is a way to get org wide enqueued actions on GitHub?
You mean for Github-hosted workers? For self-hosted it is org-wide by default I believe
I never do that. What is the use case when you need that? It seems to be a bottleneck for workflows
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
The api seems to only provide that info per repo it seems.
2023-11-14
The first is an interesting deep dive on supply chain and repo jacking for gha
The second is like iam access analyzer for github actions
2023-11-28
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
@Dan Miller (Cloud Posse)
are you taking about a workflow in a specific repo that runs for any branch name starting with RPA?
or are you taking about workflows for all repos with names starting with RPA in an organization ?
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
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
Or are we talking about https://docs.github.com/en/actions/using-workflows/required-workflows