17 lines
250 B
YAML
17 lines
250 B
YAML
|
name: Test pull_request_target
|
||
|
|
||
|
on:
|
||
|
- pull_request_target
|
||
|
|
||
|
jobs:
|
||
|
setup:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v3
|
||
|
with:
|
||
|
fetch-depth: 1
|
||
|
|
||
|
- run: |
|
||
|
cat README.md
|