Bump byte-buddy.version from 1.14.14 to 1.14.16 (#19420) #1275
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Request a dispatched main branch build | |
on: | |
push: | |
branches: [ master, main ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
dispatchedMainBuild: | |
name: Dispatch build | |
runs-on: ubuntu-latest | |
steps: | |
# TODO remove later | |
- name: Debug event | |
run: jq . "$GITHUB_EVENT_PATH" | |
- name: Dispatch build to graylog-project-internal | |
run: > | |
gh workflow run -R Graylog2/graylog-project-internal main-build.yml --ref master | |
-f caller_repo=${{ github.repository }} | |
-f caller_branch=${{ github.base_ref || github.ref_name }} | |
-f head_sha=${{ github.sha }} | |
-f initial_actor="${{ github.actor }}/${{ github.triggering_actor }}" | |
env: | |
GITHUB_TOKEN: ${{ secrets.PAT_GRAYLOG_PROJECT_INTERNAL_WORKFLOW_RW }} |