Automatically approve my own PRs
This commit is contained in:
parent
61afe4dad9
commit
db370881c3
2 changed files with 14 additions and 7 deletions
16
.github/workflows/ci.yaml
vendored
16
.github/workflows/ci.yaml
vendored
|
@ -10,17 +10,23 @@ env:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build_and_test:
|
build_and_test:
|
||||||
name: Build and test
|
|
||||||
runs-on: ${{ matrix.os }}
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, macOS-latest, windows-latest]
|
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:
|
steps:
|
||||||
- uses: actions/checkout@master
|
- uses: actions/checkout@master
|
||||||
|
|
||||||
- name: Install ${{ matrix.rust }}
|
- name: Install Rust
|
||||||
uses: actions-rs/toolchain@v1
|
uses: actions-rs/toolchain@v1
|
||||||
with:
|
with:
|
||||||
toolchain: ${{ matrix.rust }}
|
toolchain: ${{ matrix.rust }}
|
||||||
|
|
5
.github/workflows/dependabot_automation.yml
vendored
5
.github/workflows/dependabot_automation.yml
vendored
|
@ -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
|
on: pull_request
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
|
@ -8,10 +8,11 @@ permissions:
|
||||||
jobs:
|
jobs:
|
||||||
dependabot:
|
dependabot:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: ${{ github.actor == 'dependabot[bot]' }}
|
if: ${{ github.actor == 'dependabot[bot]' || github.actor == 'Pr0methean' }}
|
||||||
steps:
|
steps:
|
||||||
- name: Dependabot metadata
|
- name: Dependabot metadata
|
||||||
id: metadata
|
id: metadata
|
||||||
|
if: ${{ github.actor == 'dependabot[bot]' }}
|
||||||
uses: dependabot/fetch-metadata@v2.0.0
|
uses: dependabot/fetch-metadata@v2.0.0
|
||||||
with:
|
with:
|
||||||
github-token: "${{ secrets.GITHUB_TOKEN }}"
|
github-token: "${{ secrets.GITHUB_TOKEN }}"
|
||||||
|
|
Loading…
Add table
Reference in a new issue