Skip to content

Commit ee97208

Browse files
authored
Merge pull request #11 from PepperDash/4-series-updates
4 series updates
2 parents 69ff533 + 29aa740 commit ee97208

40 files changed

Lines changed: 1115 additions & 773 deletions
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Build Essentials Plugin
2+
3+
on:
4+
push:
5+
branches:
6+
- '**'
7+
8+
jobs:
9+
getVersion:
10+
uses: PepperDash/workflow-templates/.github/workflows/essentialsplugins-getversion.yml@main
11+
secrets: inherit
12+
13+
build-3Series:
14+
uses: PepperDash/workflow-templates/.github/workflows/essentialsplugins-3Series-builds.yml@main
15+
secrets: inherit
16+
needs: getVersion
17+
if: needs.getVersion.outputs.newVersion == 'true'
18+
with:
19+
newVersion: ${{ needs.getVersion.outputs.newVersion }}
20+
version: ${{ needs.getVersion.outputs.version }}
21+
tag: ${{ needs.getVersion.outputs.tag }}
22+
channel: ${{ needs.getVersion.outputs.channel }}
23+
24+
build-4Series:
25+
uses: PepperDash/workflow-templates/.github/workflows/essentialsplugins-4Series-builds.yml@main
26+
secrets: inherit
27+
needs: getVersion
28+
if: needs.getVersion.outputs.newVersion == 'true'
29+
with:
30+
newVersion: ${{ needs.getVersion.outputs.newVersion }}
31+
version: ${{ needs.getVersion.outputs.version }}
32+
tag: ${{ needs.getVersion.outputs.tag }}
33+
channel: ${{ needs.getVersion.outputs.channel }}

.github/workflows/essentialsplugins-betabuilds-caller.yml

Lines changed: 0 additions & 22 deletions
This file was deleted.

.github/workflows/essentialsplugins-releasebuilds-caller.yml

Lines changed: 0 additions & 26 deletions
This file was deleted.
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
name: Generate README
3+
4+
on:
5+
push:
6+
branches-ignore:
7+
- 'robot-docs'
8+
9+
jobs:
10+
call-update-readme:
11+
uses: PepperDash/workflow-templates/.github/workflows/update-readme.yml@development
12+
with:
13+
target-branch: ${{ github.ref_name }}
14+

.releaserc.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"plugins": [
3+
[
4+
"@semantic-release/commit-analyzer",
5+
{
6+
"releaseRules": [
7+
{ "scope": "force-patch", "release": "patch" },
8+
{ "scope": "no-release", "release": false }
9+
]
10+
}
11+
],
12+
"@semantic-release/release-notes-generator",
13+
["@semantic-release/changelog",
14+
{
15+
"changelogFile": "CHANGELOG.md"
16+
}
17+
],
18+
[
19+
"@semantic-release/exec",
20+
{
21+
"verifyReleaseCmd": "echo \"newVersion=true\" >> $GITHUB_OUTPUT",
22+
"publishCmd": "echo \"version=${nextRelease.version}\" >> $GITHUB_OUTPUT && echo \"tag=${nextRelease.gitTag}\" >> $GITHUB_OUTPUT && echo \"type=${nextRelease.type}\" >> $GITHUB_OUTPUT && echo \"channel=${nextRelease.channel}\" >> $GITHUB_OUTPUT"
23+
}
24+
]
25+
],
26+
"branches": [
27+
"main",
28+
{"name": "release", "prerelease": "rc", "channel": "rc"},
29+
{
30+
"name": "replace-me-feature-branch",
31+
"prerelease": "replace-me-prerelease",
32+
"channel": "replace-me-prerelease"
33+
}
34+
]
35+
}

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# Internal Essentials Plugin Template (c) 2022
2-
32
## License
43
Provided under MIT license
54

File renamed without changes.

ConfiguraitonFile Example/LocalConfig/configurationFile.json renamed to _ConfiguraitonFile Example/LocalConfig/configurationFile.json

File renamed without changes.
File renamed without changes.

ConfiguraitonFile Example/plugins/loadedAssemblies/PDT.CustomValues.EPI.dll renamed to _ConfiguraitonFile Example/plugins/loadedAssemblies/PDT.CustomValues.EPI.dll

File renamed without changes.

0 commit comments

Comments
 (0)