Skip to content

Commit fd9e254

Browse files
committed
Matrix example
Signed-off-by: Christian Gregg <[email protected]>
1 parent bb94ffe commit fd9e254

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/build_matrix.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Bump Matrix (example)
2+
on:
3+
workflow_dispatch:
4+
5+
jobs:
6+
update:
7+
name: Update
8+
runs-on: ubuntu-latest
9+
strategy:
10+
fail-fast: false
11+
matrix:
12+
projects:
13+
- repository: CGA1123/dependabot-lein-runner
14+
directory: '/dummy'
15+
16+
steps:
17+
- uses: CGA1123/dependabot-lein-runner@main
18+
with:
19+
token: ${{ github.token }}
20+
repository: ${{ matrix.projects.repository }}
21+
directory: ${{ matrix.projects.directory }}

0 commit comments

Comments
 (0)