Skip to content

Commit 2e74cae

Browse files
chore(ci): add workflow stubs for PR testing
Add minimal workflow stubs to enable PR testing of new workflows. These stubs will be replaced by full implementations in gitleaks branch PR.
1 parent f7acee5 commit 2e74cae

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Package Release
2+
3+
on:
4+
workflow_call:
5+
inputs:
6+
package-name:
7+
required: true
8+
type: string
9+
package-path:
10+
required: true
11+
type: string
12+
13+
jobs:
14+
stub:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Workflow stub
18+
run: echo "Stub - full implementation in PR"
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Package Test
2+
3+
on:
4+
workflow_call:
5+
inputs:
6+
package-name:
7+
required: true
8+
type: string
9+
package-path:
10+
required: true
11+
type: string
12+
13+
jobs:
14+
stub:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Workflow stub
18+
run: echo "Stub - full implementation in PR"

0 commit comments

Comments
 (0)