Skip to content
This repository was archived by the owner on Aug 25, 2024. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@ permissions:
contents: read

on:
workflow_dispatch: null
workflow_dispatch:
inputs:
# For 2nd party validation
name-with-owner:
type: string
description: "owner/repo"
default: '${{ github.repository }}'
push:
branches:
- main
Expand Down Expand Up @@ -33,6 +39,8 @@ jobs:
egress-policy: audit

- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
repository: ${{ inputs.name-with-owner || github.repository }}
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
with:
Expand Down