Skip to content

Implement log and push workflows #15

Implement log and push workflows

Implement log and push workflows #15

Workflow file for this run

name: Merge
on:
merge_group:
# Required to make status check pass.
pull_request:
branches:
- main
jobs:
log:
runs-on: ubuntu-latest
steps:
- name: Log event
run: |
echo "json: ${{ github }}"
printenv
deploy_staging:
if: ${{ github.event_name == 'merge_group' }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Deploy to staging
run: |
echo "Deploying to staging"
# Your deployment script here