Skip to content
# hope
name: Check differences
on:
issue_comment:
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Dump GitHub context
env:
GITHUB_CONTEXT: ${{ toJSON(github.event.issue.pull_request) }}
run: echo "$GITHUB_CONTEXT"
- name: 🛎 Checkout repo
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: 📌 Filter changed projects
uses: dorny/paths-filter@v2
with:
base: ${{ github.event.pull_request.head.sha }}
filters: |
changes:
- './**'
build:
strategy:
fail-fast: true
uses: ./.github/workflows/deployment.yaml
with:
deplyment_review: ${{ github.event.pull_request.head.sha }}
secrets: inherit
test:
strategy:
fail-fast: true
uses: ./.github/workflows/deployment.yaml
secrets: inherit