We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb94ffe commit fd9e254Copy full SHA for fd9e254
.github/workflows/build_matrix.yml
@@ -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