pipeline-test-vars/.gitea/workflows/vars.yml

91 lines
1.6 KiB
YAML
Raw Normal View History

2024-01-21 14:13:36 +01:00
on:
2024-01-22 07:25:35 +01:00
create:
delete:
fork:
gollum:
issue_comment:
issues:
pull_request:
pull_request_review:
pull_request_review_comment:
pull_request_target:
pull_request_comment:
2024-01-22 07:14:20 +01:00
push:
2024-01-22 07:23:59 +01:00
schedule:
- cron: 0 0 * * *
2024-01-22 07:25:35 +01:00
registry_package:
release:
2024-01-22 07:25:14 +01:00
#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:
2024-01-21 14:13:36 +01:00
jobs:
dump:
runs-on: ubuntu-latest
steps:
2024-01-22 06:27:22 +01:00
- name: github
shell: bash
run: echo "${{ toJSON(github) }}"
- name: env
shell: bash
run: echo "${{ toJSON(env) }}"
2024-01-22 06:27:48 +01:00
- name: vars
shell: bash
run: echo "${{ toJSON(vars) }}"
2024-01-22 06:28:02 +01:00
- name: job
shell: bash
run: echo "${{ toJSON(job) }}"
2024-01-22 06:28:13 +01:00
- name: jobs
shell: bash
run: echo "${{ toJSON(jobs) }}"
2024-01-22 06:28:53 +01:00
- name: steps
shell: bash
run: echo "${{ toJSON(steps) }}"
2024-01-22 06:29:04 +01:00
- name: runner
shell: bash
run: echo "${{ toJSON(runner) }}"
2024-01-22 06:29:19 +01:00
- name: secrets
shell: bash
run: echo "${{ toJSON(secrets) }}"
2024-01-22 06:29:33 +01:00
- name: strategy
shell: bash
run: echo "${{ toJSON(strategy) }}"
2024-01-22 06:29:46 +01:00
- name: matrix
shell: bash
run: echo "${{ toJSON(matrix) }}"
2024-01-22 06:30:02 +01:00
- name: needs
shell: bash
run: echo "${{ toJSON(needs) }}"
2024-01-22 06:30:11 +01:00
- name: inputs
shell: bash
run: echo "${{ toJSON(inputs) }}"