Skip to content

Commit fe9ea7a

Browse files
authored
Create Dependabot.yml
1 parent e7991c7 commit fe9ea7a

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

.github/workflows/Dependabot.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
2+
name: Dependabot update commit
3+
4+
on:
5+
pull_request:
6+
paths:
7+
- 'Submodule/**'
8+
9+
jobs:
10+
11+
DependabotSync:
12+
if: github.actor == 'dependabot[bot]'
13+
strategy:
14+
matrix:
15+
os:
16+
- ubuntu-latest
17+
# - macos-latest
18+
swift: ["5.9"]
19+
runs-on: ${{ matrix.os }}
20+
steps:
21+
- uses: actions/checkout@v4
22+
with:
23+
submodules: true
24+
- uses: ./.github/workflows/actions/setup
25+
with:
26+
swift: ${{ matrix.swift }}
27+
os: ${{ matrix.os }}
28+
- run: |
29+
git config user.name "${GITHUB_ACTOR}"
30+
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
31+
- run: make install
32+
- run: git push

0 commit comments

Comments
 (0)