Skip to content

Commit

Permalink
fix: update yml files to new format (#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
mchuangatmp authored Jul 18, 2022
1 parent ae8a7da commit 8454eff
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
## Testing Plan
- {explain how this has been tested, and what additional testing should be done}

## Master Issue
## Reference Issue
- Closes https://go.mparticle.com/work/REPLACEME
4 changes: 2 additions & 2 deletions .github/workflows/dependabot-automerge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
automerge-dependabot:
name: "Automerge Dependabot PR"
if: >
${{ github.event.workflow_run.event == 'pull_request' &&
github.event.workflow_run.event == 'pull_request' &&
github.event.workflow_run.conclusion == 'success' &&
github.actor == 'dependabot[bot]' }}
github.actor == 'dependabot[bot]'
env:
GITHUB_TOKEN: ${{ secrets.MP_SEMANTIC_RELEASE_BOT }}
GIT_AUTHOR_NAME: mparticle-automation
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-branch-rebase.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ on:
jobs:
rebase-branch:
name: "Rebase Development onto Dependabot Branch"
uses: mParticle/mparticle-workflows/.github/workflows/dependabot-rebase-development.yml@stable
uses: mParticle/mparticle-workflows/.github/workflows/dependabot-rebase-development.yml@main
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
# SDK release is done from public main branch.
confirm-public-repo-main-branch:
name: "Confirm release is run from public/main branch"
uses: mParticle/mparticle-workflows/.github/workflows/sdk-release-repo-branch-check.yml@stable
uses: mParticle/mparticle-workflows/.github/workflows/sdk-release-repo-branch-check.yml@main

create-release-branch:
name: "Create Release Branch"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/reusable-workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ on:
jobs:
pr-branch-check-name:
name: "Check PR for semantic branch name"
uses: mParticle/mparticle-workflows/.github/workflows/pr-branch-check-name.yml@stable
uses: mParticle/mparticle-workflows/.github/workflows/pr-branch-check-name.yml@main
pr-title-check:
name: "Check PR for semantic title"
uses: mParticle/mparticle-workflows/.github/workflows/pr-title-check.yml@stable
uses: mParticle/mparticle-workflows/.github/workflows/pr-title-check.yml@main
pr-branch-target-gitflow:
name: "Check PR for semantic target branch"
uses: mParticle/mparticle-workflows/.github/workflows/pr-branch-target-gitflow.yml@stable
uses: mParticle/mparticle-workflows/.github/workflows/pr-branch-target-gitflow.yml@main
2 changes: 1 addition & 1 deletion .github/workflows/sync-higgs-shop-data-plan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: [ workflow_dispatch ]
jobs:
fetch-data-plan:
name: Fetch Data Plan
uses: mParticle/mparticle-workflows/.github/workflows/data-plan-fetch.yml@stable
uses: mParticle/mparticle-workflows/.github/workflows/data-plan-fetch.yml@main
with:
data_plan_id: higgs_shop_basic_data_plan
data_plan_version: 1
Expand Down
2 changes: 1 addition & 1 deletion release.sh → .scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ git add :/*.kts
#create and rename release APK for Github
./gradlew assembleDebug
#mkdir dist
#mv core-sdk-samples/higgs-shop-sample-app/app/build/outputs/apk/debug/app-debug.apk "dist/HiggsShopSampleApp-$1.apk"
#mv core-sdk-samples/higgs-shop-sample-app/app/build/outputs/apk/debug/app-debug.apk "dist/HiggsShopSampleApp-$1.apk"
2 changes: 1 addition & 1 deletion release.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ module.exports = {
[
"@semantic-release/exec",
{
prepareCmd: "sh ./release.sh ${nextRelease.version}",
prepareCmd: "sh ./.scripts/release.sh ${nextRelease.version}",
},
],
["@semantic-release/github"],
Expand Down

0 comments on commit 8454eff

Please sign in to comment.