Skip to content

Fix bitbucket build integration. (#774) #2322

Fix bitbucket build integration. (#774)

Fix bitbucket build integration. (#774) #2322

Workflow file for this run

name: Debugging
# https://help.github.com/en/actions/reference/context-and-expression-syntax-for-github-actions#example-printing-context-information-to-the-log-file
on:
push:
branches:
- 1.x
# @TODO: Remove after this branch is merged.
- ci/github/actions-branches
pull_request:
types: [opened, synchronize]
jobs:
contexts:
name: GitHub Actions
runs-on: ubuntu-latest
steps:
- name: environment vars
run: env
- name: user info
run: id
- name: github context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"
- name: job context
env:
JOB_CONTEXT: ${{ toJson(job) }}
run: echo "$JOB_CONTEXT"
- name: steps context
env:
STEPS_CONTEXT: ${{ toJson(steps) }}
run: echo "$STEPS_CONTEXT"
- name: runner context
env:
RUNNER_CONTEXT: ${{ toJson(runner) }}
run: echo "$RUNNER_CONTEXT"
- name: strategy context
env:
STRATEGY_CONTEXT: ${{ toJson(strategy) }}
run: echo "$STRATEGY_CONTEXT"
- name: matrix context
env:
MATRIX_CONTEXT: ${{ toJson(matrix) }}
run: echo "$MATRIX_CONTEXT"