-
Notifications
You must be signed in to change notification settings - Fork 0
28 lines (28 loc) · 924 Bytes
/
no-trigger.yml
File metadata and controls
28 lines (28 loc) · 924 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: No Trigger
run-name: ${{ github.actor }} is trigger manually
on:
workflow_call:
inputs:
lane:
required: true
type: string
description: What fastlane to execute
workflow_dispatch:
inputs:
lane:
required: true
type: string
description: What fastlane to execute
jobs:
Some-Actions:
runs-on: [self-hosted, ARM64]
steps:
- name: Check out repository code for ${{ inputs.lane }}
uses: actions/checkout@v3
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
- run: echo "🎉 The job was manually triggered by a ${{ github.event_name }} event."
- name: Run ${{ inputs.lane }}
run: |
${{ inputs.lane }}
- run: echo "🍏 This job's status is ${{ job.status }}."