pipeline-test-vars/.gitea/workflows/vars.yml
Oliver Lippert 73ac2e6ac7
reorder triggers
currently no pipeline is started. probably doesn't help
2024-01-22 07:13:16 +01:00

90 lines
1.6 KiB
YAML

on:
push:
create:
delete:
fork:
gollum:
issue_comment:
issues:
pull_request:
pull_request_review:
pull_request_review_comment:
pull_request_target:
pull_request_comment:
registry_package:
release:
schedule:
- 0 0 * * *
#branch_protection_rule:
#check_run:
#check_suite:
#deployment:
#discussion:
#discussion_comment:
#label:
#merge_group:
#milestone:
#page_build:
#project:
#project_card:
#project_column:
#public:
#repository_dispatch:
#status:
#watch:
#workflow_call:
#workflow_dispatch:
#workflow_run:
jobs:
dump:
runs-on: ubuntu-latest
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) }}"