Skip to content

Commit

Permalink
feat(github): merge checks workflow [pulumi]
Browse files Browse the repository at this point in the history
  • Loading branch information
mergealot committed Aug 7, 2024
1 parent 57755c3 commit 1421ec0
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/merge-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# This file was added by Pulumi and should not be edited manually. To edit the contents of this file, please go
# to the github-management project in moneymeets-pulumi and call `pulumi up` after changing the template file.

name: Merge checks

on:
push:
branches:
- feature/**

jobs:
merge-checks:
runs-on: ubuntu-22.04
if: "!contains(github.event.head_commit.message, '[skip checks]')"
timeout-minutes: 5
permissions:
contents: read
statuses: write
steps:
- name: Merge checks
uses: moneymeets/action-merge-checks@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
head_sha: ${{ github.sha }}

0 comments on commit 1421ec0

Please sign in to comment.