rename to forgejo
Some checks failed
/ dump (push) Successful in 2s
/ dump (pull_request) Has been cancelled

This commit is contained in:
Oliver Lippert 2024-02-09 19:12:23 +01:00
parent 32219ce131
commit ac89dd4e7c
Signed by: oliver
GPG key ID: 4AE99C459BC7D2B3

View file

@ -0,0 +1,88 @@
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) }}"