Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: leverage reusable workflow #125

Merged
merged 4 commits into from
Apr 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .github/workflows/on_prerelease.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Prerelease pipeline

on:
release:
types:
- prereleased
tags:
- 'v*'

jobs:
pre-release:
uses: newrelic/coreint-automation/.github/workflows/reusable_pre_release.yaml@v2
with:
tag: ${{ github.event.release.tag_name }}
integration: "mongodb"
secrets: inherit
16 changes: 16 additions & 0 deletions .github/workflows/on_push_pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Push/PR pipeline

on:
push:
branches:
- main
- master
- renovate/**
pull_request:

jobs:
push-pr:
uses: newrelic/coreint-automation/.github/workflows/reusable_push_pr.yaml@v2
with:
integration: mongodb
secrets: inherit
16 changes: 16 additions & 0 deletions .github/workflows/on_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Create release artifacts

on:
release:
types:
- released
tags:
- 'v*'

jobs:
release:
uses: newrelic/coreint-automation/.github/workflows/reusable_on_release.yaml@v2
with:
integration: mongodb
tag: ${{ github.event.release.tag_name }}
secrets: inherit
216 changes: 0 additions & 216 deletions .github/workflows/prerelease.yml

This file was deleted.

123 changes: 0 additions & 123 deletions .github/workflows/push_pr.yml

This file was deleted.

Loading
Loading