11 lines
189 B
Bash
11 lines
189 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
cat > /workspaces/event.json <<EOF
|
||
|
{
|
||
|
"number": ${PMD_CI_PULL_REQUEST_NUMBER},
|
||
|
"repository": {
|
||
|
"clone_url": "https://github.com/pmd/pmd.git"
|
||
|
}
|
||
|
}
|
||
|
EOF
|