Skip to content

Commit 8454eff

Browse files
authored
fix: update yml files to new format (#99)
1 parent ae8a7da commit 8454eff

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
## Testing Plan
1010
- {explain how this has been tested, and what additional testing should be done}
1111

12-
## Master Issue
12+
## Reference Issue
1313
- Closes https://go.mparticle.com/work/REPLACEME

.github/workflows/dependabot-automerge.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
automerge-dependabot:
1111
name: "Automerge Dependabot PR"
1212
if: >
13-
${{ github.event.workflow_run.event == 'pull_request' &&
13+
github.event.workflow_run.event == 'pull_request' &&
1414
github.event.workflow_run.conclusion == 'success' &&
15-
github.actor == 'dependabot[bot]' }}
15+
github.actor == 'dependabot[bot]'
1616
env:
1717
GITHUB_TOKEN: ${{ secrets.MP_SEMANTIC_RELEASE_BOT }}
1818
GIT_AUTHOR_NAME: mparticle-automation

.github/workflows/dependabot-branch-rebase.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ on:
99
jobs:
1010
rebase-branch:
1111
name: "Rebase Development onto Dependabot Branch"
12-
uses: mParticle/mparticle-workflows/.github/workflows/dependabot-rebase-development.yml@stable
12+
uses: mParticle/mparticle-workflows/.github/workflows/dependabot-rebase-development.yml@main

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
# SDK release is done from public main branch.
1414
confirm-public-repo-main-branch:
1515
name: "Confirm release is run from public/main branch"
16-
uses: mParticle/mparticle-workflows/.github/workflows/sdk-release-repo-branch-check.yml@stable
16+
uses: mParticle/mparticle-workflows/.github/workflows/sdk-release-repo-branch-check.yml@main
1717

1818
create-release-branch:
1919
name: "Create Release Branch"

.github/workflows/reusable-workflows.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ on:
66
jobs:
77
pr-branch-check-name:
88
name: "Check PR for semantic branch name"
9-
uses: mParticle/mparticle-workflows/.github/workflows/pr-branch-check-name.yml@stable
9+
uses: mParticle/mparticle-workflows/.github/workflows/pr-branch-check-name.yml@main
1010
pr-title-check:
1111
name: "Check PR for semantic title"
12-
uses: mParticle/mparticle-workflows/.github/workflows/pr-title-check.yml@stable
12+
uses: mParticle/mparticle-workflows/.github/workflows/pr-title-check.yml@main
1313
pr-branch-target-gitflow:
1414
name: "Check PR for semantic target branch"
15-
uses: mParticle/mparticle-workflows/.github/workflows/pr-branch-target-gitflow.yml@stable
15+
uses: mParticle/mparticle-workflows/.github/workflows/pr-branch-target-gitflow.yml@main

.github/workflows/sync-higgs-shop-data-plan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on: [ workflow_dispatch ]
55
jobs:
66
fetch-data-plan:
77
name: Fetch Data Plan
8-
uses: mParticle/mparticle-workflows/.github/workflows/data-plan-fetch.yml@stable
8+
uses: mParticle/mparticle-workflows/.github/workflows/data-plan-fetch.yml@main
99
with:
1010
data_plan_id: higgs_shop_basic_data_plan
1111
data_plan_version: 1

release.sh renamed to .scripts/release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ git add :/*.kts
1717
#create and rename release APK for Github
1818
./gradlew assembleDebug
1919
#mkdir dist
20-
#mv core-sdk-samples/higgs-shop-sample-app/app/build/outputs/apk/debug/app-debug.apk "dist/HiggsShopSampleApp-$1.apk"
20+
#mv core-sdk-samples/higgs-shop-sample-app/app/build/outputs/apk/debug/app-debug.apk "dist/HiggsShopSampleApp-$1.apk"

release.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ module.exports = {
3535
[
3636
"@semantic-release/exec",
3737
{
38-
prepareCmd: "sh ./release.sh ${nextRelease.version}",
38+
prepareCmd: "sh ./.scripts/release.sh ${nextRelease.version}",
3939
},
4040
],
4141
["@semantic-release/github"],

0 commit comments

Comments
 (0)