This commit is contained in:
commit
841fced6d9
1 changed files with 14 additions and 0 deletions
14
.github/workflows/probe.yml
vendored
Normal file
14
.github/workflows/probe.yml
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
name: probe
|
||||
on: [push]
|
||||
jobs:
|
||||
env:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: dump the forge-identifying environment
|
||||
run: |
|
||||
echo "--- GITHUB_* ---"
|
||||
env | grep -E '^GITHUB_' | sort
|
||||
echo "--- GITEA_/FORGEJO_/ACTIONS_ ---"
|
||||
env | grep -E '^(GITEA_|FORGEJO_|ACTIONS_|CI=|RUNNER_)' | sort
|
||||
echo "--- clients present ---"
|
||||
for b in gh curl jq node stoke; do printf '%s: %s\n' "$b" "$(command -v $b || echo ABSENT)"; done
|
||||
Loading…
Reference in a new issue