Browse Source

Exclude dependabot[bot] in Integration Tests

pull/203/head
ssrlive 1 year ago
parent
commit
7c32b62727
  1. 1
      .github/workflows/publish-exe.yml
  2. 1
      .github/workflows/rust.yml
  3. 10
      .github/workflows/tests.yml

1
.github/workflows/publish-exe.yml

@ -1,4 +1,5 @@
on:
workflow_dispatch:
push:
tags:
- "v*.*.*"

1
.github/workflows/rust.yml

@ -1,6 +1,7 @@
name: Push or PR
on:
workflow_dispatch:
push:
branches:
- '**'

10
.github/workflows/tests.yml

@ -12,14 +12,10 @@ jobs:
proxy_tests:
name: Proxy Tests
runs-on: ubuntu-latest
if: github.event_name != 'pull_request' || contains(github.event.pull_request.labels.*.name, 'safe to test')
if: (github.event_name != 'pull_request' || contains(github.event.pull_request.labels.*.name, 'safe to test')) && github.actor != 'dependabot[bot]' && github.actor != 'github-actions[bot]'
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Populate .env
env:
DOTENV: ${{ secrets.DOTENV }}

Loading…
Cancel
Save