Skip to content

Commit f2e5c2f

Browse files
committed
ci: add mend bot exemptions to workflows
1 parent 4ba0787 commit f2e5c2f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/sandbox-os.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
jobs:
77
ansible-lint:
8-
if: github.event_name == 'pull_request' || (github.event_name == 'push' && github.actor != 'renovate[bot]')
8+
if: github.event_name == 'pull_request' || (github.event_name == 'push' && github.actor != 'renovate[bot]' && github.actor != 'mend[bot]')
99
runs-on: ubuntu-24.04
1010
steps:
1111
- uses: actions/checkout@v5
@@ -27,7 +27,7 @@ jobs:
2727
run: python3 ./scripts/salty-linter.py ./roles
2828

2929
check-entries:
30-
if: github.event_name == 'pull_request' || (github.event_name == 'push' && github.actor != 'renovate[bot]')
30+
if: github.event_name == 'pull_request' || (github.event_name == 'push' && github.actor != 'renovate[bot]' && github.actor != 'mend[bot]')
3131
runs-on: ubuntu-24.04
3232
steps:
3333
- uses: actions/checkout@v5
@@ -36,7 +36,7 @@ jobs:
3636
run: ./scripts/check_missing_entries.sh
3737

3838
find-roles:
39-
if: github.event_name == 'pull_request' || (github.event_name == 'push' && github.actor != 'renovate[bot]')
39+
if: github.event_name == 'pull_request' || (github.event_name == 'push' && github.actor != 'renovate[bot]' && github.actor != 'mend[bot]')
4040
runs-on: ubuntu-24.04
4141
outputs:
4242
matrix: ${{ steps.set-matrix.outputs.matrix }}

.github/workflows/sandbox.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818

1919
jobs:
2020
ansible-lint:
21-
if: github.event_name == 'pull_request' || (github.event_name == 'push' && github.actor != 'renovate[bot]')
21+
if: github.event_name == 'pull_request' || (github.event_name == 'push' && github.actor != 'renovate[bot]' && github.actor != 'mend[bot]')
2222
runs-on: ubuntu-24.04
2323
steps:
2424
- uses: actions/checkout@v5
@@ -40,7 +40,7 @@ jobs:
4040
run: python3 ./scripts/salty-linter.py ./roles
4141

4242
check-entries:
43-
if: github.event_name == 'pull_request' || (github.event_name == 'push' && github.actor != 'renovate[bot]')
43+
if: github.event_name == 'pull_request' || (github.event_name == 'push' && github.actor != 'renovate[bot]' && github.actor != 'mend[bot]')
4444
runs-on: ubuntu-24.04
4545
steps:
4646
- uses: actions/checkout@v5
@@ -49,7 +49,7 @@ jobs:
4949
run: ./scripts/check_missing_entries.sh
5050

5151
find-roles:
52-
if: github.event_name == 'pull_request' || (github.event_name == 'push' && github.actor != 'renovate[bot]')
52+
if: github.event_name == 'pull_request' || (github.event_name == 'push' && github.actor != 'renovate[bot]' && github.actor != 'mend[bot]')
5353
runs-on: ubuntu-24.04
5454
outputs:
5555
matrix: ${{ steps.set-matrix.outputs.matrix }}

0 commit comments

Comments
 (0)