Conteúdo 19/10/2023 #491
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: Auto Merge Pull Requests | |
# To disable automerge, simply remove this label from secrets | |
on: | |
pull_request: | |
types: | |
- opened | |
- labeled | |
workflow_dispatch: | |
jobs: | |
automerge: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Generate GitHub Token | |
uses: tibdex/github-app-token@v1 | |
id: generate-token | |
with: | |
app_id: ${{ secrets.ID_GITHUB_APP }} | |
private_key: ${{ secrets.PRIVATE_KEY_GITHUB_APP }} | |
- name: Merge | |
uses: FelippeChemello/[email protected] | |
with: | |
GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }} | |
reviewers: false | |
blocking_labels: do not merge | |
method: squash | |
delete_source_branch: false | |
authors: codestack-me[bot],dependabot[bot] |