An open API service indexing awesome lists of open source software.

https://github.com/jamsinclair/gif-guardian-action

The silent but animated protector of Pull Requests. Automatically label Pull Requests without gifs.
https://github.com/jamsinclair/gif-guardian-action

Last synced: 18 days ago
JSON representation

The silent but animated protector of Pull Requests. Automatically label Pull Requests without gifs.

Awesome Lists containing this project

README

        

# Gif Guardian Action

> The silent but animated protector of Pull Requests. Automatically label Pull Requests without gifs with this GitHub Action.

## Example Workflow

```yml
name: Pull Requests Must Have GIF

on:
pull_request:
types: [opened, reopened]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: Gif Guardian
uses: jamsinclair/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
label: "🙅‍♀️ No Gif"
```