-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (42 loc) · 1.07 KB
/
test-feature.yml
File metadata and controls
46 lines (42 loc) · 1.07 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
name: Test feature build
on:
workflow_dispatch:
push:
branches:
- feature/**
paths-ignore:
- .github/workflows/**
- .gitignore
- build.sh
- build-aarch64.sh
- build-jvm.sh
- LICENSE
- mvnw
- mvnw.cmd
- README.md
- release.sh
pull_request:
branches:
- feature/**
paths-ignore:
- .github/workflows/**
- .gitignore
- build.sh
- build-aarch64.sh
- build-jvm.sh
- LICENSE
- mvnw
- mvnw.cmd
- README.md
- release.sh
jobs:
call-test-feature-build:
# environment: development
uses: andreabattaglia/reusable-workflows/.github/workflows/test-feature.yml@main
# Use the "secrets" keyword to pass named secrets.
secrets:
ARTIFACTORY_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }}
ARTIFACTORY_TOKEN: ${{ secrets.ARTIFACTORY_TOKEN }}
# Workflows that call reusable workflows in the same organization or enterprise
# can use the "inherit" keyword to implicitly pass the secrets.
# secrets: inherit