Skip to content

Automatically run repoman on a repository and report QA errors.

License

Notifications You must be signed in to change notification settings

hacking-gentoo/action-repoman

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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