Skip to content

Automated Pull Request From main to feature/test Branch #854

Automated Pull Request From main to feature/test Branch

Automated Pull Request From main to feature/test Branch #854

name: 44 - Check if PR from Fork
on: [pull_request]
jobs:
fork:
runs-on: ubuntu-latest
if: github.event.pull_request.head.repo.fork == true
steps:
- run: echo "This workflow run if PR is from a fork repo"
not-fork:
runs-on: ubuntu-latest
if: github.event.pull_request.head.repo.fork == false
steps:
- run: echo "This workflow run if PR is NOT from a fork repo"