-
Notifications
You must be signed in to change notification settings - Fork 39
Open
Labels
wontfixThis will not be worked onThis will not be worked on
Description
Prerequisites
- I have written a descriptive issue title
- I have searched existing issues to ensure the regression has not already been reported
Last working version
2.x
Stopped working in version
3.x
Node.js version
12.x
Operating system
Linux
Operating system version (i.e. 20.04, 11.3, 10)
20.04
π₯ Regression Report
Now that v3 directly merges the pull request in the workflow without using an external app no push workflow is triggered.
In v2 once a dependabot pull request got merged any workflows listening on the push event were triggered.
Steps to Reproduce
automerge.yml
name: automerge
on:
pull_request:
branches:
- main
jobs:
automerge:
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- uses: fastify/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
ci.yml
name: ci
on:
push:
branches:
- main
jobs:
ci:
runs-on: ubuntu-latest
steps:
- run: |
echo hello
Expected Behavior
ci.yml
to be called.
I am unsure how/if this can be fixed as dependabot workflows have no access to other secrets other than the default GITHUB_TOKEN
.
nosvalds, tinohager, wbaldoumas, Th3S4mur41, joshgubler and 1 more
Metadata
Metadata
Assignees
Labels
wontfixThis will not be worked onThis will not be worked on