Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/gabrielrufino/expect-action

Validation action
https://github.com/gabrielrufino/expect-action

actions github regex validation

Last synced: 7 days ago
JSON representation

Validation action

Awesome Lists containing this project

README

        

# Expect action

```yml
name: Validation action

on: [push]

jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: gabrielrufino/expect-action@v1
with:
type: 'regex'
value: '[email protected]'
pattern: '^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$'
```