Skip to content
Merged
Changes from all commits
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
16 changes: 9 additions & 7 deletions .github/workflows/test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,18 @@ on:
pull_request:
branches:
- main
paths:
- '!.github/**'
paths-ignore:
- '.github/workflows/auto-create-pr-*.yml'
- '.github/workflows/auto-label-pr-*.yml'
- '.github/FUNDING.yml'
- '.github/pull_request_template.md'
# Review gh actions docs if you want to further define triggers, paths, etc
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on
workflow_dispatch:
# Only trigger, when the build workflow succeeded
workflow_run:
workflows: ["PR checklist checker"]
types:
- completed

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
test-deploy:
Expand Down
Loading