8000 BETA: Bump homebridge-config-ui-x in /beta · homebridge/homebridge-apt-pkg@55be8cc · GitHub
[go: up one dir, main page]

Skip to content

BETA: Bump homebridge-config-ui-x from 5.0.0-beta.105 to 5.0.0-beta.107 in /beta #91

BETA: Bump homebridge-config-ui-x from 5.0.0-beta.105 to 5.0.0-beta.107 in /beta

BETA: Bump homebridge-config-ui-x from 5.0.0-beta.105 to 5.0.0-beta.107 in /beta #91

name: Release Trigger Logger
on:
pull_request_target:
types:
- closed
pull_request:
types:
- assigned
- unassigned
- labeled
- unlabeled
- opened
- edited
- closed
- reopened
- synchronize
- ready_for_review
- locked
- unlocked
- review_requested
- review_request_removed
- converted_to_draft
release:
types:
- created
- edited
- deleted
- published
- unpublished
- prereleased
jobs:
release_logger:
# allows for both the workflow_dispatch and push events to trigger this job
runs-on: ubuntu-latest
steps:
- name: Dump GitHub context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"
- name: Variables
run: |
echo "::notice:: event_name: ${{ github.event_name }}"
echo "::notice:: event_action: ${{ github.event.action }}"
0