pipeline-test-vars/.forgejo/workflows/vars.yml
Oliver Lippert ac89dd4e7c
Some checks failed
/ dump (push) Successful in 2s
/ dump (pull_request) Has been cancelled
rename to forgejo
2024-02-09 19:12:23 +01:00

88 lines
1.5 KiB
YAML

on:
branch_protection_rule:
check_run:
check_suite:
create:
delete:
deployment:
discussion:
discussion_comment:
fork:
gollum:
issue_comment:
issues:
label:
merge_group:
milestone:
page_build:
project:
project_card:
project_column:
public:
pull_request:
pull_request_review:
pull_request_review_comment:
pull_request_target:
push:
registry_package:
release:
repository_dispatch:
schedule:
- cron: 0 0 * * *
status:
watch:
workflow_call:
workflow_dispatch:
workflow_run:
jobs:
dump:
runs-on: docker
steps:
- name: github
shell: bash
run: echo "${{ toJSON(github) }}"
- name: env
shell: bash
run: echo "${{ toJSON(env) }}"
- name: vars
shell: bash
run: echo "${{ toJSON(vars) }}"
- name: job
shell: bash
run: echo "${{ toJSON(job) }}"
- name: jobs
shell: bash
run: echo "${{ toJSON(jobs) }}"
- name: steps
shell: bash
run: echo "${{ toJSON(steps) }}"
- name: runner
shell: bash
run: echo "${{ toJSON(runner) }}"
- name: secrets
shell: bash
run: echo "${{ toJSON(secrets) }}"
- name: strategy
shell: bash
run: echo "${{ toJSON(strategy) }}"
- name: matrix
shell: bash
run: echo "${{ toJSON(matrix) }}"
- name: needs
shell: bash
run: echo "${{ toJSON(needs) }}"
- name: inputs
shell: bash
run: echo "${{ toJSON(inputs) }}"