Skip to content

Commit

Permalink
new post-process workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
shyamd authored Jul 13, 2021
1 parent 529753e commit f07c8ea
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/post-process.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Post-process

on:
workflow_run:
types:
- completed
workflows:
# List all required workflow names here.
- 'testing'

jobs:
merge-me:
name: Merge me!
runs-on: ubuntu-latest
steps:
- # It is often a desired behavior to merge only when a workflow execution
# succeeds. This can be changed as needed.
if: ${{ github.event.workflow_run.conclusion == 'success' }}
name: Merge me!
uses: ridedott/merge-me-action@v2
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

auto-gen-release:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.EMMET_SEMVER_BUMP_TOKEN }}
steps:
- # It is often a desired behavior to merge only when a workflow execution
# succeeds. This can be changed as needed.
if: ${{ github.event.workflow_run.conclusion == 'success' }}
uses: rymndhng/[email protected]
with:
bump_version_scheme: norelease

0 comments on commit f07c8ea

Please sign in to comment.