Merge pull request #2 from 7rikazhexde/dependabot/pip/dependencies-d5… #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Send Payload Action to Pytest | |
on: | |
push: | |
branches: | |
- 'main' | |
jobs: | |
test-and-send-dispatch: | |
if: github.actor != 'dependabot[bot]' && !startsWith(github.event.head_commit.message, 'Bump version') | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
- name: Send Payload to Pytest | |
uses: 7rikazhexde/repo-dispatch-event-sender@main | |
with: | |
repository_name: '7rikazhexde/repo-dispatch-event-sender' | |
event_type: 'test_multi_os' | |
os_list: 'ubuntu-latest macos-13 windows-latest' | |
python_versions: '3.10 3.11 3.12' | |
env: | |
#GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Must Allow "Read and write permissions" from Workflow permissions | |
GH_TOKEN: ${{ secrets.PAT_FOR_PUSHES }} |