diff --git a/.github/workflows/create-release-pr.yaml b/.github/workflows/create-release-pr.yaml index 60e1853f4..80f96573a 100644 --- a/.github/workflows/create-release-pr.yaml +++ b/.github/workflows/create-release-pr.yaml @@ -19,6 +19,7 @@ jobs: contents: write pull-requests: write runs-on: ubuntu-latest + if: github.repository == 'openwallet-foundation/acapy-plugins' outputs: current_available_version: ${{ steps.current_available_version.outputs.version }} current_global_version: ${{ steps.current_global_version.outputs.version }} diff --git a/.github/workflows/create-release.yaml b/.github/workflows/create-release.yaml index 5f38daf78..3ab4665c9 100644 --- a/.github/workflows/create-release.yaml +++ b/.github/workflows/create-release.yaml @@ -11,6 +11,7 @@ jobs: permissions: contents: write runs-on: ubuntu-latest + if: github.repository == 'openwallet-foundation/acapy-plugins' outputs: current_global_version: ${{ steps.current_global_version.outputs.version }} should_create_release: ${{ steps.should_create_release.outputs.should_create_release }} diff --git a/.github/workflows/pr-integration-tests.yaml b/.github/workflows/pr-integration-tests.yaml index 9380c02c9..51df49694 100644 --- a/.github/workflows/pr-integration-tests.yaml +++ b/.github/workflows/pr-integration-tests.yaml @@ -13,6 +13,7 @@ jobs: integration-tests: name: "Integration Tests" runs-on: ubuntu-latest + if: (github.repository == 'openwallet-foundation/acapy-plugins') && ((github.event_name == 'pull_request' && github.event.pull_request.draft == false) || (github.event_name != 'pull_request')) steps: #---------------------------------------------- # Check out repo diff --git a/.github/workflows/publish-docs.yml b/.github/workflows/publish-docs.yml index 803f87db8..6d4304433 100644 --- a/.github/workflows/publish-docs.yml +++ b/.github/workflows/publish-docs.yml @@ -12,6 +12,7 @@ permissions: jobs: deploy: runs-on: ubuntu-latest + if: github.repository == 'openwallet-foundation/acapy-plugins' steps: - uses: actions/checkout@v4 with: