1
0
Fork 0
mirror of https://github.com/cisagov/log4j-affected-db.git synced 2024-11-22 16:40:48 +00:00

Make workflow run when a PR is opened, synchronized, or reopened

A user forked cisagov/scan-target-data and created a pull request, but
the required GitHub Action(s) did not run.  This is presumably because
the user does not have Actions enabled in his or her fork.  Ideally,
the required Action(s) would run in cisagov/scan-target-data when a PR
to merge changes back is created.  Based on my reading of this link,
adding the "pull_request" event type should make this happen:
https://help.github.com/en/actions/automating-your-workflow-with-github-actions/events-that-trigger-workflows#pull-request-events-for-forked-repositories
This commit is contained in:
Jeremy Frasier 2020-01-24 16:45:48 -05:00
parent 09afdf3a7c
commit 2fa4cbe194
No known key found for this signature in database
GPG key ID: 285B4A02F4305C09

View file

@ -1,7 +1,7 @@
---
name: build
on: [push]
on: [push, pull_request]
jobs:
build: