Skip to content

e2e

e2e #49991

Workflow file for this run

name: e2e
on:
workflow_run:
workflows:
- '**'
types:
- completed
pull_request:
types:
- opened
- closed
push:
branches:
- main
schedule:
- cron: '0 * * * *' # hourly
jobs:
test:
name: test / ${{ github.event_name }} / ${{ github.event.action }}
runs-on: ubuntu-latest
timeout-minutes: 10
permissions:
actions: read
checks: read
contents: read
pull-requests: read
steps:
- name: Event
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
with:
script: |
core.info(`eventName=${context.eventName}`)
core.info(`sha=${context.sha}`)
core.info(`ref=${context.ref}`)
core.info(`actor=${context.actor}`)
core.info(`payload=${JSON.stringify(context.payload, undefined, 2)}`)
- uses: int128/datadog-actions-metrics@79f01ed0794412d8bbaf6e88d0925f751abdf642 # v1.169.0
with:
datadog-api-key: ${{ secrets.DATADOG_API_KEY }}
collect-job-metrics: true
collect-step-metrics: true