From db370881c3818567f14aa45fa10391b0dd8b38b4 Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Mon, 15 Apr 2024 15:41:26 -0700 Subject: [PATCH] Automatically approve my own PRs --- .github/workflows/ci.yaml | 16 +++++++++++----- .github/workflows/dependabot_automation.yml | 5 +++-- 2 files changed, 14 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index cf289a66..e6c474e9 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -10,17 +10,23 @@ env: jobs: build_and_test: - name: Build and test - runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest, macOS-latest, windows-latest] - rust: [stable, '1.70', nightly] - + rustalias: [stable, nightly, msrv] + include: + - rustalias: stable + rust: stable + - rustalias: msrv + rust: '1.70' + - rustalias: nightly + rust: nightly + name: 'Build and test: ${{ matrix.os }}, ${{ matrix.rustalias }}' + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@master - - name: Install ${{ matrix.rust }} + - name: Install Rust uses: actions-rs/toolchain@v1 with: toolchain: ${{ matrix.rust }} diff --git a/.github/workflows/dependabot_automation.yml b/.github/workflows/dependabot_automation.yml index 3a5a9df1..e85fe51b 100644 --- a/.github/workflows/dependabot_automation.yml +++ b/.github/workflows/dependabot_automation.yml @@ -1,4 +1,4 @@ -name: Dependabot auto-approve and auto-merge +name: Auto-approve and auto-merge owner-written and Dependabot PRs on: pull_request permissions: @@ -8,10 +8,11 @@ permissions: jobs: dependabot: runs-on: ubuntu-latest - if: ${{ github.actor == 'dependabot[bot]' }} + if: ${{ github.actor == 'dependabot[bot]' || github.actor == 'Pr0methean' }} steps: - name: Dependabot metadata id: metadata + if: ${{ github.actor == 'dependabot[bot]' }} uses: dependabot/fetch-metadata@v2.0.0 with: github-token: "${{ secrets.GITHUB_TOKEN }}"