Don't run the same job for both push and pull_request

This commit is contained in:
Tyrrrz 2023-11-25 18:58:32 +02:00
parent 309e58116a
commit cf77cb4688
2 changed files with 8 additions and 0 deletions

View file

@ -3,7 +3,11 @@ name: docker
on: on:
workflow_dispatch: workflow_dispatch:
push: push:
branches:
- master
pull_request: pull_request:
branches:
- master
jobs: jobs:
# Outputs from this job aren't really used, but it's here to verify that # Outputs from this job aren't really used, but it's here to verify that

View file

@ -3,7 +3,11 @@ name: main
on: on:
workflow_dispatch: workflow_dispatch:
push: push:
branches:
- master
pull_request: pull_request:
branches:
- master
env: env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true