#github-actions (2022-11)

Discussions related to GitHub Actions

2022-11-01

actions Archives | The GitHub Blog avatar
actions Archives | The GitHub Blog
02:05:44 PM

GitHub Actions: Restrict workflows to specific runners using runner group names GitHub Actions: Restrict workflows to specific runners using runner group names

GitHub Actions: Restrict workflows to specific runners using runner group names | GitHub Changelogattachment image

GitHub Actions: Restrict workflows to specific runners using runner group names

jose.amengual avatar
jose.amengual

can you trigger a workflow from an github App or the other way around?

2022-11-09

actions Archives | The GitHub Blog avatar
actions Archives | The GitHub Blog
01:45:50 PM

GitHub Actions: Ubuntu-latest workflows will use Ubuntu-22.04 GitHub Actions: Ubuntu-latest workflows will use Ubuntu-22.04

GitHub Actions: Ubuntu-latest workflows will use Ubuntu-22.04 | GitHub Changelogattachment image

GitHub Actions: Ubuntu-latest workflows will use Ubuntu-22.04

2022-11-14

actions Archives | The GitHub Blog avatar
actions Archives | The GitHub Blog
07:35:41 PM

GitHub Actions: Require approval for running workflows from private forks GitHub Actions: Require approval for running workflows from private forks

GitHub Actions: Require approval for running workflows from private forks | GitHub Changelogattachment image

GitHub Actions: Require approval for running workflows from private forks

2022-11-16

actions Archives | The GitHub Blog avatar
actions Archives | The GitHub Blog
06:35:42 PM

Introducing GitHub Actions Importer Introducing GitHub Actions Importer

Gabriel avatar
Gabriel

Is there a way to use repository/environment secrets in jobs>steps without having to explicitly pass every secret to a step?

Gabriel avatar
Gabriel

solution

- name: some step
  env:
    SECRETS_CONTEXT: ${{ toJson(secrets) }}
1

2022-11-17

2022-11-22

actions Archives | The GitHub Blog avatar
actions Archives | The GitHub Blog
02:15:42 PM

Webhook enhancements for environment protection rules Webhook enhancements for environment protection rules

Webhook enhancements for environment protection rules | GitHub Changelogattachment image

Webhook enhancements for environment protection rules

2022-11-28

Steve Wade (swade1987) avatar
Steve Wade (swade1987)

Does anyone know in GH actions how to kickoff workflows from other repos? I have used convictional/trigger-workflow-and-wait but it works for kicking off a single workflow from a single repo, I need to kick off about 20-30 workflows.

Darren Cunningham avatar
Darren Cunningham
Using Github Actions with Repository Dispatch Eventattachment image

If you ever set up a Github Actions workflow on a repository, you will recognize the YAML file that executes steps upon any code you push…

1
    keyboard_arrow_up