Skip to content

Delete pr-merge.yaml #464

Delete pr-merge.yaml

Delete pr-merge.yaml #464

Workflow file for this run

name: Conditional Workflow
on:
pull_request:
branches:
- origin/dev-bpolania/workflows
push:
branches:
- origin/dev-bpolania/workflows
jobs:
Timestamp:
if: ${{ github.event.pull_request.head.repo.full_name == github.repository }}
uses: storyprotocol/gha-workflows/.github/workflows/reusable-timestamp.yml@main
pr_build_and_test:
if: github.event_name == 'pull_request'
needs: [Timestamp]
uses: storyprotocol/gha-workflows/.github/workflows/reusable-build-unit-test-workflow.yml@main
with:
sha: ${{ github.event.pull_request.head.sha }}
ENVIRONMENT: "beta-sepolia"
secrets:
WALLET_PRIVATE_KEY: ${{ secrets.WALLET_PRIVATE_KEY }}
TEST_WALLET_ADDRESS: ${{ secrets.TEST_WALLET_ADDRESS }}
push_build_and_test:
if: github.event_name == 'push'
needs: [Timestamp]
uses: storyprotocol/gha-workflows/.github/workflows/reusable-build-integration-test-workflow.yml@main

Check failure on line 30 in .github/workflows/pr-internal.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pr-internal.yml

Invalid workflow file

error parsing called workflow ".github/workflows/pr-internal.yml" -> "storyprotocol/gha-workflows/.github/workflows/reusable-build-integration-test-workflow.yml@main" : failed to fetch workflow: workflow was not found.
with:
sha: ${{ github.sha }}
ENVIRONMENT: "beta-sepolia"
secrets:
WALLET_PRIVATE_KEY: ${{ secrets.WALLET_PRIVATE_KEY }}
TEST_WALLET_ADDRESS: ${{ secrets.TEST_WALLET_ADDRESS }}