Skip to content
This repository has been archived by the owner on Jun 23, 2020. It is now read-only.

Trigger action on closed PRs #3

Merged
merged 1 commit into from
Mar 29, 2020
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
2 changes: 2 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,13 @@ on:
push:
branches: [ master ]
pull_request:
types: [opened, synchronize, reopened, closed]

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
test:
if: github.event.action != 'closed' || github.event.pull_request.merged
# The type of runner that the job will run on
runs-on: ubuntu-latest

Expand Down