Skip to content
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
12 changes: 12 additions & 0 deletions .github/workflows/dependabot-automerge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: "Dependabot Automerge"

on:
workflow_run:
workflows: ["Pull Request"]
types:
- completed

jobs:
pr-check:
name: "Dependabot Automerge"
uses: mParticle/mparticle-workflows/.github/workflows/dependabot-automerge.yml@main
8 changes: 8 additions & 0 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name: "Pull Request"
on: pull_request
jobs:
pr-check:
name: "Pull Request Check"
uses: mParticle/mparticle-workflows/.github/workflows/android-kit-pull-request.yml@main
with:
branch_name: ${{ github.head_ref }}
12 changes: 12 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: "Push"

on:
push:
workflow_dispatch:

jobs:
push-check:
name: "Push Check"
uses: mParticle/mparticle-workflows/.github/workflows/android-kit-push.yml@main
with:
branch_name: ${{ github.head_ref }}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I see this as github.sha in this Repo. Which shoudl it be? https://github.com/mparticle-integrations/mparticle-android-integration-google-analytics-firebase-ga4/blob/main/.github/workflows/push.yml

In this case it's probably the same value but worth calling out for the future to do an audit and have them all be identical

21 changes: 21 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: "Release"

on:

schedule:
- cron: "0 0 * * *"

workflow_dispatch:
inputs:
dryRun:
description: "Do a dry run to preview instead of a real release [true/false]"
required: true
default: "true"

jobs:
release-kit:
name: "Release Kit"
uses: mParticle/mparticle-workflows/.github/workflows/android-kit-release.yml@main
secrets: inherit
with:
dryRun: ${{ github.event.inputs.dryRun || 'false' }}
13 changes: 13 additions & 0 deletions .github/workflows/sonarcloud.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: "SonarCloud"

on:
workflow_run:
workflows: ["Pull Request", "Push"]
types:
- completed

jobs:
sonarcloud-check:
name: "SonarCloud Check"
uses: mParticle/mparticle-workflows/.github/workflows/sonarcloud.yml@main
secrets: inherit