@codfish/actions-playground 0.0.0-PR-59--bae66db → 0.0.0-PR-61--0e869aa

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -27,6 +27,35 @@ jobs:
27
27
  with:
28
28
  node-version: 18.x
29
29
 
30
+ - name: semantic release dry run
31
+ uses: codfish/semantic-release-action@main
32
+ id: semantic-dry-run
33
+ with:
34
+ dry-run: true
35
+ env:
36
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
37
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
38
+
39
+ - name: Dump semantic dry run outputs
40
+ if: steps.semantic-dry-run.outputs.new-release-published == 'true'
41
+ run: |
42
+ echo "Outputs:\n"
43
+ echo "$SEMANTIC_OUTPUTS"
44
+ echo "\n-----\n\nEnvironment Variables:\n"
45
+ echo "NEW_RELEASE_PUBLISHED: $NEW_RELEASE_PUBLISHED"
46
+ echo "RELEASE_VERSION: $RELEASE_VERSION"
47
+ echo "RELEASE_MAJOR: $RELEASE_MAJOR"
48
+ echo "RELEASE_MINOR: $RELEASE_MINOR"
49
+ echo "RELEASE_PATCH: $RELEASE_PATCH"
50
+ echo "RELEASE_NOTES: $RELEASE_NOTES"
51
+ echo "RELEASE_TYPE: $RELEASE_TYPE"
52
+ echo "RELEASE_CHANNEL: $RELEASE_CHANNEL"
53
+ echo "RELEASE_GIT_HEAD: $RELEASE_GIT_HEAD"
54
+ echo "RELEASE_GIT_TAG: $RELEASE_GIT_TAG"
55
+ echo "RELEASE_NAME: $RELEASE_NAME"
56
+ env:
57
+ SEMANTIC_OUTPUTS: ${{ toJson(steps.semantic-dry-run.outputs) }}
58
+
30
59
  - shell: bash
31
60
  run: |
32
61
  echo "DOCKER_TAGS=main-${GITHUB_SHA},main,latest" >> $GITHUB_ENV;
@@ -48,28 +77,11 @@ jobs:
48
77
  - name: docker build
49
78
  run: docker build -t codfish/actions-playground:latest .
50
79
 
51
- - name: semantic release dry run
52
- uses: codfish/semantic-release-action@v2
53
- id: semantic-dry-run
54
- with:
55
- dry_run: true
56
- branches: |
57
- [
58
- 'main',
59
- 'next',
60
- 'next-major',
61
- {name: 'beta', prerelease: true},
62
- {name: 'alpha', prerelease: true}
63
- ]
64
- env:
65
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
66
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
67
-
68
80
  - name: semantic-release
69
- uses: codfish/semantic-release-action@upgrade
81
+ uses: docker://ghcr.io/codfish/semantic-release-action@sha256:e8640e0a620980247fd6e46f2f43f9a42d17181840518ea7fe983eeed65c154e
70
82
  id: semantic
71
83
  with:
72
- additional_packages: |
84
+ additional-packages: |
73
85
  ['@google/semantic-release-replace-plugin', '@semantic-release/git']
74
86
  plugins: |
75
87
  [
@@ -110,7 +122,27 @@ jobs:
110
122
  }
111
123
  ],
112
124
  [ '@semantic-release/git', {'assets': ['Dockerfile', 'provisioning/Chart.yml']} ],
113
- '@semantic-release/release-notes-generator',
125
+ [
126
+ "@semantic-release/release-notes-generator",
127
+ {
128
+ "preset": "conventionalcommits",
129
+ "presetConfig": {
130
+ "types": [
131
+ { type: 'feat', section: 'Features', hidden: false },
132
+ { type: 'fix', section: 'Bug Fixes', hidden: false },
133
+ { type: 'perf', section: 'Performance Improvements', hidden: false },
134
+ { type: 'revert', section: 'Reverts', hidden: false },
135
+ { type: 'docs', section: 'Other Updates', hidden: false },
136
+ { type: 'style', section: 'Other Updates', hidden: false },
137
+ { type: 'chore', section: 'Other Updates', hidden: false },
138
+ { type: 'refactor', section: 'Other Updates', hidden: false },
139
+ { type: 'test', section: 'Other Updates', hidden: false },
140
+ { type: 'build', section: 'Other Updates', hidden: false },
141
+ { type: 'ci', section: 'Other Updates', hidden: false }
142
+ ]
143
+ }
144
+ }
145
+ ],
114
146
  '@semantic-release/npm',
115
147
  '@semantic-release/github'
116
148
  ]
@@ -119,7 +151,7 @@ jobs:
119
151
  NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
120
152
 
121
153
  - name: Dump semantic outputs
122
- if: steps.semantic-dry-run.outputs.new-release-published == 'true'
154
+ if: steps.semantic.outputs.new-release-published == 'true'
123
155
  run: |
124
156
  echo "Outputs:\n"
125
157
  echo "$SEMANTIC_OUTPUTS"
@@ -136,7 +168,7 @@ jobs:
136
168
  echo "RELEASE_GIT_TAG: $RELEASE_GIT_TAG"
137
169
  echo "RELEASE_NAME: $RELEASE_NAME"
138
170
  env:
139
- SEMANTIC_OUTPUTS: ${{ toJson(steps.semantic-dry-run.outputs) }}
171
+ SEMANTIC_OUTPUTS: ${{ toJson(steps.semantic.outputs) }}
140
172
 
141
173
  - shell: bash
142
174
  if: steps.semantic.outputs.new-release-published == 'true'
@@ -166,21 +198,20 @@ jobs:
166
198
  env:
167
199
  VERSION_TAG: v${{ steps.semantic.outputs.release-version }}
168
200
  MAJOR_TAG: v${{ steps.semantic.outputs.release-major }}
169
-
170
- - name: build docs
171
- run: |
172
- npm ci --no-save
173
- npm run build:docs
174
- rm ./docs/.gitignore
175
- env:
176
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
177
- # does not work...
178
- # Error: The deploy step encountered an error: The process '/usr/bin/git' failed with exit code 128
179
- # Deployment failed! ❌
180
- # ::set-output name=deployment-status::failed
181
- #
182
- # - name: deploy documentation
183
- # uses: jamesives/github-pages-deploy-action@4.1.0
184
- # with:
185
- # branch: gh-pages
186
- # folder: docs
201
+ # - name: build docs
202
+ # run: |
203
+ # npm ci --no-save
204
+ # npm run build:docs
205
+ # rm ./docs/.gitignore
206
+ # env:
207
+ # NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
208
+ # does not work...
209
+ # Error: The deploy step encountered an error: The process '/usr/bin/git' failed with exit code 128 ❌
210
+ # Deployment failed!
211
+ # ::set-output name=deployment-status::failed
212
+ #
213
+ # - name: deploy documentation
214
+ # uses: jamesives/github-pages-deploy-action@4.1.0
215
+ # with:
216
+ # branch: gh-pages
217
+ # folder: docs
@@ -0,0 +1,30 @@
1
+ name: Validate pr title
2
+
3
+ on:
4
+ pull_request:
5
+ types: [edited, opened, reopened]
6
+
7
+ jobs:
8
+ validate-pr-title:
9
+ runs-on: ubuntu-latest
10
+
11
+ concurrency:
12
+ group: ${{ github.workflow }}-${{ github.ref }}
13
+ cancel-in-progress: true
14
+
15
+ steps:
16
+ - uses: actions/setup-node@v3
17
+ with:
18
+ node-version: 20
19
+
20
+ - name: install commitlint deps
21
+ run: npm install @commitlint/{cli,config-angular}
22
+
23
+ # todo: loosen restrictions set in @commitlint/config-angular to allow for more flexibility
24
+ - name: create commitlint config without yaml errors
25
+ run: |
26
+ echo "module.exports = {extends: ['@commitlint/config-angular']}" > commitlint.config.js
27
+
28
+ - name: Validate PR title
29
+ run: |
30
+ echo "${{ github.event.pull_request.title }}" | npx -y --no commitlint
package/Dockerfile CHANGED
@@ -10,7 +10,7 @@ RUN npm ci
10
10
  COPY ./src ./src
11
11
  COPY ./public ./public
12
12
 
13
- ENV RELEASE_VERSION=5.0.0
13
+ ENV RELEASE_VERSION=5.2.0
14
14
 
15
15
  RUN npm run build
16
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codfish/actions-playground",
3
- "version": "0.0.0-PR-59--bae66db",
3
+ "version": "0.0.0-PR-61--0e869aa",
4
4
  "description": "My own testing ground for messing around with GitHub Actions.",
5
5
  "private": false,
6
6
  "publishConfig": {
@@ -35,6 +35,7 @@
35
35
  "@commitlint/cli": "^8.2.0",
36
36
  "@commitlint/config-conventional": "^8.2.0",
37
37
  "cod-scripts": "^12.0.0",
38
+ "conventional-changelog-conventionalcommits": "^7.0.2",
38
39
  "jsdoc": "^3.6.3",
39
40
  "markdownlint-cli": "^0.18.0"
40
41
  },
@@ -1,3 +1,3 @@
1
- appVersion: 5.0.0
1
+ appVersion: 5.2.0
2
2
  name: actions-playground
3
- version: 5.0.0
3
+ version: 5.2.0
package/test.txt CHANGED
@@ -1 +1,7 @@
1
- testing pr title squash merges with breaking change
1
+ testing dry run outputs
2
+
3
+ release notes test
4
+
5
+ release notes refactor test
6
+
7
+ test pr changes