Spaces:
Running
Running
File size: 287 Bytes
886ab52 |
1 2 3 4 5 6 7 8 9 10 |
name: On Pull Request To Main
on:
pull_request:
types: [opened, synchronize, reopened]
branches: ["main"]
jobs:
test-lint-ping:
if: ${{ !contains(github.event.pull_request.labels.*.name, 'skip-test-lint-ping') }}
uses: ./.github/workflows/reusable-test-lint-ping.yml
|