mirror of
https://github.com/oven-sh/bun
synced 2026-02-14 04:49:06 +00:00
Github actions only triggers the `status` event if the workflow is in the main branch. This can be removed later.
12 lines
194 B
YAML
12 lines
194 B
YAML
name: Debug
|
|
on: status
|
|
|
|
jobs:
|
|
debug:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Debug
|
|
env:
|
|
GITHUB_CONTEXT: ${{ toJson(github) }}
|
|
run: echo "$GITHUB_CONTEXT"
|