Automerge Release-Please PRs #10
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 Release-Please PRs | |
on: | |
schedule: | |
- cron: '50 4 * * 1' # runs every Monday at 04:50 UTC | |
jobs: | |
auto-merge: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Import Secrets | |
id: vault-secrets | |
uses: hashicorp/vault-action@v3.0.0 | |
with: | |
url: ${{ secrets.VAULT_ADDR }} | |
method: approle | |
roleId: ${{ secrets.VAULT_ROLE_ID }} | |
secretId: ${{ secrets.VAULT_SECRET_ID}} | |
secrets: | | |
secret/data/products/infra/ci/infra-releases RELEASES_APP_ID; | |
secret/data/products/infra/ci/infra-releases RELEASES_APP_KEY; | |
- name: Generate a GitHub token for infra-rerun camunda/infra-global-github-actions | |
id: app-token | |
uses: actions/create-github-app-token@v1 | |
with: | |
app-id: ${{ steps.vault-secrets.outputs.RELEASES_APP_ID }} | |
private-key: ${{ steps.vault-secrets.outputs.RELEASES_APP_KEY }} | |
- name: Automerge Release-Please PR | |
uses: camunda/infra-global-github-actions/teams/infra/pull-request/automerge@main | |
with: | |
github-token: ${{ steps.app-token.outputs.token }} |