Bump elgohr/Publish-Docker-Github-Action from 38987302af488ecaab9aa56003116c62436d7648 to ec61b713af46c32efaa27ac2626c2acb82ce6435 #57
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Automerge Dependabot | |
on: | |
pull_request_target: | |
types: [opened, reopened] | |
branches: | |
- dev | |
- master | |
concurrency: | |
group: "dependabot-automerge-${{ github.head_ref || github.run_id }}-${{ github.event_name }}" | |
cancel-in-progress: true | |
jobs: | |
automerge: | |
name: Enable Automerge on Dependabot PRs | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.user.id == 49699333 | |
steps: | |
- name: Generate App Token | |
id: app-token-generation | |
uses: actions/create-github-app-token@v1 | |
with: | |
app-id: ${{ secrets.APP_ID }} | |
private-key: ${{ secrets.APP_PRIVATE_KEY }} | |
- name: Enable Automerge | |
uses: daneden/enable-automerge-action@f8558b65c5b8d8bfb592c4e74e3d491624a38fbd #v1.0.2-ish | |
with: | |
github-token: ${{ steps.app-token-generation.outputs.token }} |