File: testtrigger.yml

package info (click to toggle)
gle-graphics 4.3.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,672 kB
  • sloc: cpp: 78,433; python: 150; makefile: 70; perl: 46; sh: 3; ansic: 1
file content (22 lines) | stat: -rw-r--r-- 434 bytes parent folder | download | duplicates (9)
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