Skip to content

Check for workflows awaiting approval

License

Notifications You must be signed in to change notification settings

per1234/workflowsawaiting

Repository files navigation

workflowsawaiting

Check for GitHub Actions workflow runs which are awaiting approval.

From https://docs.github.com/en/actions/managing-workflow-runs/approving-workflow-runs-from-public-forks

workflows on pull requests are not run automatically if they are received from first-time contributors, and must be approved first

This policy puts a large burden on repository maintainers. Even with an active maintainer, it can introduce significant delays in the important feedback cycle between contributors and the CI system. The first time PRs targeted by the system are often the very ones that benefit the most from an automated validation system. It can be easy for maintainers to overlook that each push to a PR necessitates another approval.

For this reason, it's useful to have a tool to monitor repositories for unapproved workflows.

Table of Contents

Dependencies

Required tools:

Run the following from the project's root folder to install the Python module dependencies:

poetry install

Usage

poetry run python workflowsawaiting.py [OPTION]... CONFIG_PATH

Arguments

CONFIG_PATH

Required

Path to a YAML formatted file defining the repositories to monitor workflows in.

See the Configuration file section for details on the file format.

Options

--report-path

Optional

Path to output a JSON format report of the results to.

--verbose

Optional

Output debug information.

Environment variables

GITHUB_TOKEN

Required

GitHub access token to use for the GitHub API requests.

Configuration file

The repositories to monitor workflows in are defined by a YAML formatted file.

It is a list of configuration objects, which support the following keys:

owner

Repository owner. If an owner, the configuration applies to all that owner's repositories, though subsequent configuration objects can modify that list.

repo

Repository name. If no repo is specified by a configuration object, the action is applied to all the owner's repositories which are in the scope, though subsequent configuration objects can modify that list.

action

Supported values:

  • monitor (default)
  • ignore

scope

Supported values:

  • maintaining: (default) monitor only repositories where the owner of GITHUB_TOKEN has permissions.
  • all: monitor all repositories