File: testtrigger.yml

package info (click to toggle)
gle-graphics 4.3.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 9,652 kB
  • sloc: cpp: 78,109; sh: 161; python: 150; makefile: 68; perl: 46; ansic: 1
file content (22 lines) | stat: -rw-r--r-- 434 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#
# -- testtrigger.yml  - testing of event triggering
#
name: Test Release Trigger
on:
  workflow_dispatch:
  # workflow_run:
  #   workflows: [Create Release]
  #   types:
  #     - completed
  repository_dispatch:
    types: [test-trigger]
jobs:
  build:
    name: Test Release Trigger
    runs-on: ubuntu-latest
    steps:
    - name: echo info
      run: |
          cat << OBJECT
          ${{ toJson(github) }}
          OBJECT