Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .github/workflows/trigger.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: gh-actions branch triggered workflow

on:
workflow_dispatch:
inputs:
name:
description: 'name'
required: true
repository_dispatch:
types: [ my-event ]
issue_comment:
types: [ created ]

jobs:
build:
name: run-workflow
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
with:
ref: refs/heads/gh-actions # Specify the feature branch here
fetch-depth: 0

- name: This is FROM FEATURE Branch
run: echo "running on gh-actions branch"

- name: Test output
run: echo $(cat .test_output)
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.DS_Store