8000 GitHub - bedita/github-workflows at feat/github-script
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

bedita/github-workflows

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 

Repository files navigation

github-workflows

php-cs-stan-unit.yml

Reusable workflow that launches on an ubuntu-latest phpcs, phpstan and phpunit (with php 7.4, 8.0 and 8.1) checks.

Usage example of caller workflow:

name: 'php'

on:
  pull_request:
    paths:
      - '**/*.php'
      - '.github/workflows/php.yml'
      - 'composer.json'
  push:
    paths:
      - '**/*.php'
      - '.github/workflows/php.yml'
      - 'composer.json'

jobs:
  call:
    uses: bedita/github-workflows/.github/workflows/php-cs-stan-unit.yml@main

release.yml

Reusable workflow to create releases via Pull Requests merge, when PRs use labels release:major, release:minor, release:patch.

Usage example of caller workflow:

name: 'release'

on:
  pull_request:
    types: [closed]

jobs:
  call:
    uses: bedita/github-workflows/.github/workflows/release.yml@main
    with:
      main_branch: 'master'
      dist_branches: '["master", "1.x"]'

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  
0