ProcessJobExecutor: start and end times passed from job process to ma… #133
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Dependency Review" | |
on: | |
pull_request: | |
types: [ "opened", "synchronize", "edited", "reopened" ] | |
paths-ignore: | |
- "docs/**" | |
push: | |
branches: | |
- "**" | |
paths-ignore: | |
- "docs/**" | |
concurrency: | |
group: "${{ github.workflow }}-${{ github.ref }}" | |
cancel-in-progress: true | |
permissions: | |
contents: "read" | |
jobs: | |
dependency-review: | |
name: "Dependency Review" | |
runs-on: "ubuntu-latest" | |
if: | | |
github.event_name != 'pull_request' | |
|| github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v4" | |
- name: "Dependency Review" | |
uses: "actions/dependency-review-action@v4" | |
with: | |
base-ref: "${{ github.event.before }}" | |
head-ref: "${{ github.sha }}" |