-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (31 loc) · 918 Bytes
/
test.yml
File metadata and controls
34 lines (31 loc) · 918 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
29
30
31
32
33
34
name: Test StackSpot Workflow action
on:
workflow_dispatch:
inputs:
execution-id:
required: true
repository-url:
required: false
debug:
type: choice
options:
- true
- false
jobs:
stackspot-workflow:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Stack Spot Workflow
uses: ./
with:
execution-id: "${{ github.event.inputs.execution-id }}"
client-id: "${{ secrets.CLIENT_ID }}"
client-secret: "${{ secrets.CLIENT_SECRET }}"
realm: "${{ vars.REALM }}"
debug: "${{ github.event.inputs.debug }}"
repository-url: "${{ github.event.inputs.repository-url }}"
origin-branch: develop
feature-branch: my-custom-feature-branch-${{ env.TIMESTAMP }}
extra-inputs: '{"teste": "teste"}'