Skip to content

actalog/expect

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

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Expect

name: Validation action

on: [push]

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