Skip to content

Instantly share code, notes, and snippets.

@kangaroodev
kangaroodev / deploy.yaml
Created February 6, 2021 19:20 — forked from jonnitto/deploy.yaml
Deployment with Github Actions
name: CI-CD
on:
push:
branches:
- production
jobs:
deploy:
name: Deploy to Production
@kangaroodev
kangaroodev / main.yml
Created February 6, 2021 19:18 — forked from shanerbaner82/main.yml
Laravel Github Actions YAML
name: APP NAME
on:
pull_request:
branches: [ branches ]
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_URL }}
jobs:
tests:
runs-on: ubuntu-latest
name: Tests
@kangaroodev
kangaroodev / ci.yml
Created February 6, 2021 19:15 — forked from hhamon/ci.yml
Github Actions PHP CI
name: '[PROJECT NAME]'
'on':
push:
branches:
- master
- develop
- 'releases/**'
pull_request: null
env:
working_directory: ./application