26 lines
500 B
YAML
26 lines
500 B
YAML
name: Test checkout
|
|
on: workflow_dispatch
|
|
|
|
jobs:
|
|
self:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- run: ls -lah
|
|
|
|
other-in-user:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
with:
|
|
repository: codinget/totallynotmalware
|
|
- run: ls -lah
|
|
|
|
other-in-other-org:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
with:
|
|
repository: privileged/action-tests
|
|
- run: ls -lah
|