Skip to content
thumbs-up

GitHub Action

action-repoman

v1.0.0 Latest version

action-repoman

thumbs-up

action-repoman

Run repoman on a repository

Installation

Copy and paste the following snippet into your .yml file.

              

- name: action-repoman

uses: hacking-gentoo/[email protected]

Learn more about this action in hacking-gentoo/action-repoman

Choose a version

action-repoman

Automatically run repoman on a repository and report QA errors.

Basic Usage

An example workflow to run repoman on an overlay after every push and on a schedule:

name: Overlay QA

on:
  push:
    paths-ignore:
      - 'README.md'
  schedule:
    - cron: "0 6 * * 1"

jobs:
  repoman:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@master
    - uses: hacking-gentoo/action-repoman@master