Skip to content

Commit

Permalink
synthetic integrations job
Browse files Browse the repository at this point in the history
  • Loading branch information
olix0r committed Mar 11, 2024
1 parent b2ba85c commit 1623184
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,15 +108,23 @@ jobs:
env:
TMPDIR: ${{ runner.temp }}

auto-merge:
# This job is guaranteed to run if the others succeed or are skipped by
# policy, so it can be required.
integrations:
needs: [rust, rust-crates, linkerd-install]
runs-on: ubuntu-latest
steps:
- run: echo "Integrated"

auto-merge:
needs: integrations
if: github.actor == 'dependabot[bot]'
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- run: gh pr merge '${{ github.event.pull_request.number }}' --auto --merge
env:
GH_TOKEN: ${{ github.token }}

0 comments on commit 1623184

Please sign in to comment.